#[repr(i32)]pub enum mxr_stream_kind_t {
MXR_STREAM_VIDEO = 0,
MXR_STREAM_AUDIO = 1,
MXR_STREAM_ANC = 2,
MXR_STREAM_ARC = 3,
}Expand description
Which of a V2IP device’s streams an address describes.
Variants§
MXR_STREAM_VIDEO = 0
The video stream.
MXR_STREAM_AUDIO = 1
The audio stream.
MXR_STREAM_ANC = 2
The ancillary-data stream.
MXR_STREAM_ARC = 3
The audio-return stream.
Trait Implementations§
Source§impl Clone for mxr_stream_kind_t
impl Clone for mxr_stream_kind_t
Source§fn clone(&self) -> mxr_stream_kind_t
fn clone(&self) -> mxr_stream_kind_t
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 mxr_stream_kind_t
Source§impl Debug for mxr_stream_kind_t
impl Debug for mxr_stream_kind_t
impl Eq for mxr_stream_kind_t
Source§impl From<StreamKind> for mxr_stream_kind_t
impl From<StreamKind> for mxr_stream_kind_t
Source§fn from(kind: StreamKind) -> Self
fn from(kind: StreamKind) -> Self
Converts to this type from the input type.
Source§impl PartialEq for mxr_stream_kind_t
impl PartialEq for mxr_stream_kind_t
impl StructuralPartialEq for mxr_stream_kind_t
Auto Trait Implementations§
impl Freeze for mxr_stream_kind_t
impl RefUnwindSafe for mxr_stream_kind_t
impl Send for mxr_stream_kind_t
impl Sync for mxr_stream_kind_t
impl Unpin for mxr_stream_kind_t
impl UnsafeUnpin for mxr_stream_kind_t
impl UnwindSafe for mxr_stream_kind_t
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