pub enum NalMuxCodec {
H264,
H265,
}Expand description
Which NAL codec the bitstream is.
Variants§
Trait Implementations§
Source§impl Clone for NalMuxCodec
impl Clone for NalMuxCodec
Source§fn clone(&self) -> NalMuxCodec
fn clone(&self) -> NalMuxCodec
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 NalMuxCodec
Source§impl Debug for NalMuxCodec
impl Debug for NalMuxCodec
impl Eq for NalMuxCodec
Source§impl PartialEq for NalMuxCodec
impl PartialEq for NalMuxCodec
Source§fn eq(&self, other: &NalMuxCodec) -> bool
fn eq(&self, other: &NalMuxCodec) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NalMuxCodec
Auto Trait Implementations§
impl Freeze for NalMuxCodec
impl RefUnwindSafe for NalMuxCodec
impl Send for NalMuxCodec
impl Sync for NalMuxCodec
impl Unpin for NalMuxCodec
impl UnsafeUnpin for NalMuxCodec
impl UnwindSafe for NalMuxCodec
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