gio/auto/
dbus_signal_info.rs

1// This file was generated by gir (https://github.com/gtk-rs/gir)
2// from gir-files (https://github.com/gtk-rs/gir-files)
3// DO NOT EDIT
4
5use crate::ffi;
6
7glib::wrapper! {
8    /// Information about a signal on a D-Bus interface.
9    #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
10    pub struct DBusSignalInfo(Shared<ffi::GDBusSignalInfo>);
11
12    match fn {
13        ref => |ptr| ffi::g_dbus_signal_info_ref(ptr),
14        unref => |ptr| ffi::g_dbus_signal_info_unref(ptr),
15        type_ => || ffi::g_dbus_signal_info_get_type(),
16    }
17}