#[repr(u32)]pub enum CodecID {
AAC = 1,
Opus = 2,
H264 = 65_537,
HEVC = 65_538,
VP8 = 65_539,
VP9 = 65_540,
AV1 = 65_541,
}Variants§
Implementations§
Trait Implementations§
impl Copy for CodecID
impl Eq for CodecID
impl StructuralPartialEq for CodecID
Auto Trait Implementations§
impl Freeze for CodecID
impl RefUnwindSafe for CodecID
impl Send for CodecID
impl Sync for CodecID
impl Unpin for CodecID
impl UnwindSafe for CodecID
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more