#[repr(C)]pub enum FrameType {
KEY = 0,
INTER = 1,
INTRA_ONLY = 2,
SWITCH = 3,
}
Expand description
Possible types of a frame.
Variants§
KEY = 0
Key frame.
INTER = 1
Inter-frame.
INTRA_ONLY = 2
Intra-only frame.
SWITCH = 3
Switching frame.
Implementations§
Trait Implementations§
source§impl PartialEq for FrameType
impl PartialEq for FrameType
impl Copy for FrameType
impl Eq for FrameType
impl StructuralPartialEq for FrameType
Auto Trait Implementations§
impl Freeze for FrameType
impl RefUnwindSafe for FrameType
impl Send for FrameType
impl Sync for FrameType
impl Unpin for FrameType
impl UnwindSafe for FrameType
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