pub enum VideoFrameType {
KeyFrame = 1,
InterFrame = 2,
DisposableInterFrame = 3,
GeneratedKeyFrame = 4,
VideoInfoOrCommandFrame = 5,
}Variants§
KeyFrame = 1
InterFrame = 2
DisposableInterFrame = 3
GeneratedKeyFrame = 4
VideoInfoOrCommandFrame = 5
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 From<VideoFrameType> for u8
impl From<VideoFrameType> for u8
Source§fn from(vft: VideoFrameType) -> Self
fn from(vft: VideoFrameType) -> Self
Converts to this type from the input type.
Source§impl Hash for VideoFrameType
impl Hash for VideoFrameType
Source§impl Ord for VideoFrameType
impl Ord for VideoFrameType
Source§fn cmp(&self, other: &VideoFrameType) -> Ordering
fn cmp(&self, other: &VideoFrameType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for VideoFrameType
impl PartialEq for VideoFrameType
Source§impl PartialOrd for VideoFrameType
impl PartialOrd for VideoFrameType
Source§impl TryFrom<u8> for VideoFrameType
impl TryFrom<u8> 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