pub struct BayFeatures(/* private fields */);Expand description
Capabilities of a single bay.
Implementations§
Source§impl BayFeatures
impl BayFeatures
Sourcepub const AUDIO_DIG_OUT: Self
pub const AUDIO_DIG_OUT: Self
Digital audio output.
Sourcepub const AUDIO_DIG_IN: Self
pub const AUDIO_DIG_IN: Self
Digital audio input.
Sourcepub const AUDIO_ANA_OUT: Self
pub const AUDIO_ANA_OUT: Self
Analogue audio output.
Sourcepub const AUDIO_ANA_IN: Self
pub const AUDIO_ANA_IN: Self
Analogue audio input.
Sourcepub const AUDIO_AMP_OUT: Self
pub const AUDIO_AMP_OUT: Self
Amplified audio output.
Sourcepub const V2IP_SOURCE_REMOTE: Self
pub const V2IP_SOURCE_REMOTE: Self
Is a remote V2IP source.
Sourcepub const V2IP_SINK_REMOTE: Self
pub const V2IP_SINK_REMOTE: Self
Is a remote V2IP sink.
Sourcepub const V2IP_SOURCE_LOCAL: Self
pub const V2IP_SOURCE_LOCAL: Self
Is a local V2IP source.
Sourcepub const V2IP_SINK_LOCAL: Self
pub const V2IP_SINK_LOCAL: Self
Is a local V2IP sink.
Trait Implementations§
Source§impl BitAnd for BayFeatures
impl BitAnd for BayFeatures
Source§impl BitOr for BayFeatures
impl BitOr for BayFeatures
Source§impl BitOrAssign for BayFeatures
impl BitOrAssign for BayFeatures
Source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|= operation. Read moreSource§impl Clone for BayFeatures
impl Clone for BayFeatures
Source§fn clone(&self) -> BayFeatures
fn clone(&self) -> BayFeatures
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BayFeatures
Source§impl Debug for BayFeatures
impl Debug for BayFeatures
Source§impl Default for BayFeatures
impl Default for BayFeatures
Source§fn default() -> BayFeatures
fn default() -> BayFeatures
Returns the “default value” for a type. Read more
Source§impl Display for BayFeatures
impl Display for BayFeatures
impl Eq for BayFeatures
Source§impl Hash for BayFeatures
impl Hash for BayFeatures
Source§impl Ord for BayFeatures
impl Ord for BayFeatures
Source§fn cmp(&self, other: &BayFeatures) -> Ordering
fn cmp(&self, other: &BayFeatures) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for BayFeatures
impl PartialEq for BayFeatures
Source§impl PartialOrd for BayFeatures
impl PartialOrd for BayFeatures
impl StructuralPartialEq for BayFeatures
Auto Trait Implementations§
impl Freeze for BayFeatures
impl RefUnwindSafe for BayFeatures
impl Send for BayFeatures
impl Sync for BayFeatures
impl Unpin for BayFeatures
impl UnsafeUnpin for BayFeatures
impl UnwindSafe for BayFeatures
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more