gio/auto/
dbus_property_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 D-Bus property on a D-Bus interface.
9    #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
10    pub struct DBusPropertyInfo(Shared<ffi::GDBusPropertyInfo>);
11
12    match fn {
13        ref => |ptr| ffi::g_dbus_property_info_ref(ptr),
14        unref => |ptr| ffi::g_dbus_property_info_unref(ptr),
15        type_ => || ffi::g_dbus_property_info_get_type(),
16    }
17}