gio/auto/
dbus_arg_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 an argument for a method or a signal.
9    #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
10    pub struct DBusArgInfo(Shared<ffi::GDBusArgInfo>);
11
12    match fn {
13        ref => |ptr| ffi::g_dbus_arg_info_ref(ptr),
14        unref => |ptr| ffi::g_dbus_arg_info_unref(ptr),
15        type_ => || ffi::g_dbus_arg_info_get_type(),
16    }
17}