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

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

name: Option<Cow<'a, str>>

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

description: Option<Cow<'a, str>>

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

icon: Option<Cow<'a, str>>

The icon given to the device.

index: Option<u32>

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

role_priorities: Vec<RolePriorityInfo<'a>>

A set of role priority structures.

Trait Implementations

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

Auto Trait Implementations

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

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

impl<'a> Unpin for Info<'a>

impl<'a> RefUnwindSafe for Info<'a>

impl<'a> UnwindSafe for Info<'a>

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]