pub enum TsTrackKind {
Video,
Audio,
}Available on crate features
ingest and srt only.Expand description
Whether a demuxed TsPayload is a video or audio access unit.
Variants§
Trait Implementations§
Source§impl Clone for TsTrackKind
impl Clone for TsTrackKind
Source§fn clone(&self) -> TsTrackKind
fn clone(&self) -> TsTrackKind
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 TsTrackKind
Source§impl Debug for TsTrackKind
impl Debug for TsTrackKind
impl Eq for TsTrackKind
Source§impl PartialEq for TsTrackKind
impl PartialEq for TsTrackKind
Source§fn eq(&self, other: &TsTrackKind) -> bool
fn eq(&self, other: &TsTrackKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TsTrackKind
Auto Trait Implementations§
impl Freeze for TsTrackKind
impl RefUnwindSafe for TsTrackKind
impl Send for TsTrackKind
impl Sync for TsTrackKind
impl Unpin for TsTrackKind
impl UnsafeUnpin for TsTrackKind
impl UnwindSafe for TsTrackKind
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