pub struct Info<'a> {
    pub name: Option<Cow<'a, str>>,
    pub channel_map: Map,
    pub volume: ChannelVolumes,
    pub device: Option<Cow<'a, str>>,
    pub mute: bool,
}
Expand description

Stores information about one entry in the stream database that is maintained by module-stream-restore.

Fields§

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

Identifier string of the stream. A string like “sink-input-by-role:” or similar followed by some arbitrary property value.

§channel_map: Map

The channel map for the volume field, if applicable.

§volume: ChannelVolumes

The volume of the stream when it was seen last, if applicable and saved.

§device: Option<Cow<'a, str>>

The sink/source of the stream when it was last seen, if applicable and saved.

§mute: bool

The boolean mute state of the stream when it was last seen, if applicable and saved.

Implementations§

Source§

impl Info<'_>

Source

pub fn to_owned(&self) -> Info<'static>

Creates a copy with owned data.

Trait Implementations§

Source§

impl<'a> Debug for Info<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for Info<'a>

§

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

§

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

§

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

§

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

§

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

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.