Struct libpulse_binding::context::introspect::CardPortInfo[][src]

pub struct CardPortInfo<'a> {
    pub name: Option<Cow<'a, str>>,
    pub description: Option<Cow<'a, str>>,
    pub priority: u32,
    pub available: PortAvailable,
    pub direction: FlagSet,
    pub proplist: Proplist,
    pub latency_offset: i64,
    pub profiles: Vec<CardProfileInfo2<'a>>,
}

Stores information about a specific port of a card.

Please note that this structure can be extended as part of evolutionary API updates at any time in any new release.

Fields

Name of this port.

Description of this port.

The higher this value is, the more useful this port is as a default.

Availability status of this port.

The direction of this port.

Property list.

Latency offset of the port that gets added to the sink/source latency when the port is active.

Set of available profiles.

Trait Implementations

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

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a> !Send for CardPortInfo<'a>

impl<'a> !Sync for CardPortInfo<'a>