pub enum DecodeFrameType {
All,
Reference,
Intra,
Key,
}Expand description
Which frame types to decode
Variants§
All
Decode all frame types
Reference
Decode only reference frames
Intra
Decode only intra frames
Key
Decode only key frames
Trait Implementations§
Source§impl Clone for DecodeFrameType
impl Clone for DecodeFrameType
Source§fn clone(&self) -> DecodeFrameType
fn clone(&self) -> DecodeFrameType
Returns a duplicate of the value. Read more
1.0.0 · 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 DecodeFrameType
impl Debug for DecodeFrameType
Source§impl PartialEq for DecodeFrameType
impl PartialEq for DecodeFrameType
impl Copy for DecodeFrameType
impl Eq for DecodeFrameType
impl StructuralPartialEq for DecodeFrameType
Auto Trait Implementations§
impl Freeze for DecodeFrameType
impl RefUnwindSafe for DecodeFrameType
impl Send for DecodeFrameType
impl Sync for DecodeFrameType
impl Unpin for DecodeFrameType
impl UnsafeUnpin for DecodeFrameType
impl UnwindSafe for DecodeFrameType
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