gio 0.18.0

Rust bindings for the Gio library
Documentation
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT

use crate::{DBusInterfaceInfo, DBusObject};
use glib::{prelude::*, translate::*};
use std::fmt;

glib::wrapper! {
    #[doc(alias = "GDBusInterface")]
    pub struct DBusInterface(Interface<ffi::GDBusInterface, ffi::GDBusInterfaceIface>);

    match fn {
        type_ => || ffi::g_dbus_interface_get_type(),
    }
}

impl DBusInterface {
    pub const NONE: Option<&'static DBusInterface> = None;
}

mod sealed {
    pub trait Sealed {}
    impl<T: super::IsA<super::DBusInterface>> Sealed for T {}
}

pub trait DBusInterfaceExt: IsA<DBusInterface> + sealed::Sealed + 'static {
    #[doc(alias = "g_dbus_interface_dup_object")]
    #[doc(alias = "dup_object")]
    fn get(&self) -> Option<DBusObject> {
        unsafe {
            from_glib_full(ffi::g_dbus_interface_dup_object(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    #[doc(alias = "g_dbus_interface_get_info")]
    #[doc(alias = "get_info")]
    fn info(&self) -> DBusInterfaceInfo {
        unsafe {
            from_glib_none(ffi::g_dbus_interface_get_info(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    #[doc(alias = "g_dbus_interface_set_object")]
    fn set_object(&self, object: Option<&impl IsA<DBusObject>>) {
        unsafe {
            ffi::g_dbus_interface_set_object(
                self.as_ref().to_glib_none().0,
                object.map(|p| p.as_ref()).to_glib_none().0,
            );
        }
    }
}

impl<O: IsA<DBusInterface>> DBusInterfaceExt for O {}

impl fmt::Display for DBusInterface {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.write_str("DBusInterface")
    }
}