pub enum FrameType {
I,
P,
B,
SKIP,
OTHER,
}
Expand description
A list of recognized frame types.
Variants§
I
Intra frame type.
P
Inter frame type.
B
Bidirectionally predicted frame.
SKIP
Skip frame.
When such frame is encountered, then last frame should be used again if it is needed.
OTHER
Some other frame type.
Trait Implementations§
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