pub enum CodecFamily {
H264,
H265,
Av1,
}Expand description
Codec family (compression standard).
Variants§
Trait Implementations§
Source§impl Clone for CodecFamily
impl Clone for CodecFamily
Source§fn clone(&self) -> CodecFamily
fn clone(&self) -> CodecFamily
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CodecFamily
Source§impl Debug for CodecFamily
impl Debug for CodecFamily
impl Eq for CodecFamily
Source§impl PartialEq for CodecFamily
impl PartialEq for CodecFamily
Source§fn eq(&self, other: &CodecFamily) -> bool
fn eq(&self, other: &CodecFamily) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CodecFamily
Auto Trait Implementations§
impl Freeze for CodecFamily
impl RefUnwindSafe for CodecFamily
impl Send for CodecFamily
impl Sync for CodecFamily
impl Unpin for CodecFamily
impl UnsafeUnpin for CodecFamily
impl UnwindSafe for CodecFamily
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