pub enum DecoderBitstreamFormat {
AnnexB,
Avcc,
Hvcc,
Unknown(String),
}Expand description
Compressed video bitstream representation expected by a native decoder.
Variants§
Trait Implementations§
Source§impl Clone for DecoderBitstreamFormat
impl Clone for DecoderBitstreamFormat
Source§fn clone(&self) -> DecoderBitstreamFormat
fn clone(&self) -> DecoderBitstreamFormat
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 moreSource§impl Debug for DecoderBitstreamFormat
impl Debug for DecoderBitstreamFormat
Source§impl<'de> Deserialize<'de> for DecoderBitstreamFormat
impl<'de> Deserialize<'de> for DecoderBitstreamFormat
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for DecoderBitstreamFormat
Source§impl Hash for DecoderBitstreamFormat
impl Hash for DecoderBitstreamFormat
Source§impl PartialEq for DecoderBitstreamFormat
impl PartialEq for DecoderBitstreamFormat
Source§impl Serialize for DecoderBitstreamFormat
impl Serialize for DecoderBitstreamFormat
impl StructuralPartialEq for DecoderBitstreamFormat
Auto Trait Implementations§
impl Freeze for DecoderBitstreamFormat
impl RefUnwindSafe for DecoderBitstreamFormat
impl Send for DecoderBitstreamFormat
impl Sync for DecoderBitstreamFormat
impl Unpin for DecoderBitstreamFormat
impl UnsafeUnpin for DecoderBitstreamFormat
impl UnwindSafe for DecoderBitstreamFormat
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