Struct libpulse_binding::context::ext_device_manager::Info[][src]

pub struct Info<'a> {
    pub name: Option<Cow<'a, str>>,
    pub description: Option<Cow<'a, str>>,
    pub icon: Option<Cow<'a, str>>,
    pub index: Option<u32>,
    pub role_priorities: Vec<RolePriorityInfo<'a>>,
}

Stores information about one device in the device database that is maintained by module-device-manager.

Fields

Identifier string of the device. A string like "sink:" or similar followed by the name of the device.

The description of the device when it was last seen, if applicable and saved.

The icon given to the device.

The device index if it is currently available or None if invalid.

A set of role priority structures.

Trait Implementations

impl<'a> Debug for Info<'a>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a> Send for Info<'a>

impl<'a> Sync for Info<'a>