pub trait ObjectManager {
    type Err;

    fn get_managed_objects(
        &self
    ) -> Result<HashMap<Path<'static>, HashMap<String, HashMap<String, Variant<Box<dyn RefArg>>>>>, Self::Err>; }
Expand description

Method of the org.freedesktop.DBus.ObjectManager interface.

Required Associated Types

Required Methods

Implementors