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
sourceimpl PartialEq<FrameType> for FrameType
impl PartialEq<FrameType> for FrameType
impl Eq for FrameType
impl StructuralEq for FrameType
impl StructuralPartialEq for FrameType
Auto Trait Implementations
impl RefUnwindSafe for FrameType
impl Send for FrameType
impl Sync for FrameType
impl Unpin for FrameType
impl UnwindSafe for FrameType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more