pub trait Peer {
    type Err;
    fn ping(&self) -> Result<(), Self::Err>;
    fn get_machine_id(&self) -> Result<String, Self::Err>;
}Expand description
Methods of the org.freedesktop.DBus.Peer interface.
Required Associated Types
Required Methods
source