pub enum VideoCodecId {
JPEG = 1,
SorensonH263 = 2,
ScreenVideo = 3,
On2VP6 = 4,
On2VP6WithAlpha = 5,
ScreenVideoVersion2 = 6,
AVC = 7,
}Variants§
JPEG = 1
SorensonH263 = 2
ScreenVideo = 3
On2VP6 = 4
On2VP6WithAlpha = 5
ScreenVideoVersion2 = 6
AVC = 7
Trait Implementations§
Source§impl Clone for VideoCodecId
impl Clone for VideoCodecId
Source§fn clone(&self) -> VideoCodecId
fn clone(&self) -> VideoCodecId
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 VideoCodecId
impl Debug for VideoCodecId
Source§impl From<VideoCodecId> for u8
impl From<VideoCodecId> for u8
Source§fn from(vci: VideoCodecId) -> Self
fn from(vci: VideoCodecId) -> Self
Converts to this type from the input type.
Source§impl Hash for VideoCodecId
impl Hash for VideoCodecId
Source§impl Ord for VideoCodecId
impl Ord for VideoCodecId
Source§fn cmp(&self, other: &VideoCodecId) -> Ordering
fn cmp(&self, other: &VideoCodecId) -> 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 VideoCodecId
impl PartialEq for VideoCodecId
Source§impl PartialOrd for VideoCodecId
impl PartialOrd for VideoCodecId
Source§impl TryFrom<u8> for VideoCodecId
impl TryFrom<u8> for VideoCodecId
impl Copy for VideoCodecId
impl Eq for VideoCodecId
impl StructuralPartialEq for VideoCodecId
Auto Trait Implementations§
impl Freeze for VideoCodecId
impl RefUnwindSafe for VideoCodecId
impl Send for VideoCodecId
impl Sync for VideoCodecId
impl Unpin for VideoCodecId
impl UnwindSafe for VideoCodecId
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