#[repr(C)]pub struct mxr_stream_sources_t {
pub uid: mxr_uid_t,
pub video: mxr_stream_source_t,
pub audio: mxr_stream_source_t,
pub anc: mxr_stream_source_t,
pub has_arc: bool,
pub arc: mxr_stream_source_t,
}Expand description
The streams one V2IP source advertises.
Fields§
§uid: mxr_uid_tThe originating device, zero when it is not known.
video: mxr_stream_source_tThe video stream.
audio: mxr_stream_source_tThe audio stream.
anc: mxr_stream_source_tThe ancillary-data stream.
has_arc: boolWhether an audio-return stream is advertised.
arc: mxr_stream_source_tThe audio-return stream, meaningful only when has_arc is set.
Trait Implementations§
Source§impl Clone for mxr_stream_sources_t
impl Clone for mxr_stream_sources_t
Source§fn clone(&self) -> mxr_stream_sources_t
fn clone(&self) -> mxr_stream_sources_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_sources_t
Source§impl From<V2ipStreamSources> for mxr_stream_sources_t
impl From<V2ipStreamSources> for mxr_stream_sources_t
Source§fn from(s: V2ipStreamSources) -> Self
fn from(s: V2ipStreamSources) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for mxr_stream_sources_t
impl RefUnwindSafe for mxr_stream_sources_t
impl Send for mxr_stream_sources_t
impl Sync for mxr_stream_sources_t
impl Unpin for mxr_stream_sources_t
impl UnsafeUnpin for mxr_stream_sources_t
impl UnwindSafe for mxr_stream_sources_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