pub enum VideoFrameType {
Keyframe = 1,
InterFrame = 2,
DisposableInterFrame = 3,
GeneratedKeyframe = 4,
VideoInfoFrame = 5,
}Expand description
Video frame type (upper 4 bits of first byte)
Variants§
Keyframe = 1
Keyframe (for AVC, a seekable frame)
InterFrame = 2
Inter frame (for AVC, a non-seekable frame)
DisposableInterFrame = 3
Disposable inter frame (H.263 only)
GeneratedKeyframe = 4
Generated keyframe (reserved for server use)
VideoInfoFrame = 5
Video info/command frame
Implementations§
Trait Implementations§
Source§impl Clone for VideoFrameType
impl Clone for VideoFrameType
Source§fn clone(&self) -> VideoFrameType
fn clone(&self) -> VideoFrameType
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 VideoFrameType
impl Debug for VideoFrameType
Source§impl PartialEq for VideoFrameType
impl PartialEq for VideoFrameType
impl Copy for VideoFrameType
impl Eq for VideoFrameType
impl StructuralPartialEq for VideoFrameType
Auto Trait Implementations§
impl Freeze for VideoFrameType
impl RefUnwindSafe for VideoFrameType
impl Send for VideoFrameType
impl Sync for VideoFrameType
impl Unpin for VideoFrameType
impl UnwindSafe for VideoFrameType
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