Trait DeviceProxy

Source
pub trait DeviceProxy {
    // Required methods
    fn connection(&self) -> &Connection;
    fn destination(&self) -> &str;
    fn path(&self) -> &str;
    fn device_type(&self) -> Result<u32>;

    // Provided method
    fn get_access_points(&self) -> Result<Vec<OwnedObjectPath>> { ... }
}

Required Methods§

Source

fn connection(&self) -> &Connection

Source

fn destination(&self) -> &str

Source

fn path(&self) -> &str

Source

fn device_type(&self) -> Result<u32>

Provided Methods§

Implementors§