#[non_exhaustive]#[repr(u32)]pub enum AVCRCId {
AV_CRC_8_ATM = 0,
AV_CRC_16_ANSI = 1,
AV_CRC_16_CCITT = 2,
AV_CRC_32_IEEE = 3,
AV_CRC_32_IEEE_LE = 4,
AV_CRC_16_ANSI_LE = 5,
AV_CRC_24_IEEE = 6,
AV_CRC_8_EBU = 7,
AV_CRC_MAX = 8,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
AV_CRC_8_ATM = 0
AV_CRC_16_ANSI = 1
AV_CRC_16_CCITT = 2
AV_CRC_32_IEEE = 3
AV_CRC_32_IEEE_LE = 4
AV_CRC_16_ANSI_LE = 5
AV_CRC_24_IEEE = 6
AV_CRC_8_EBU = 7
AV_CRC_MAX = 8
Trait Implementations§
impl Copy for AVCRCId
impl Eq for AVCRCId
impl StructuralPartialEq for AVCRCId
Auto Trait Implementations§
impl Freeze for AVCRCId
impl RefUnwindSafe for AVCRCId
impl Send for AVCRCId
impl Sync for AVCRCId
impl Unpin for AVCRCId
impl UnsafeUnpin for AVCRCId
impl UnwindSafe for AVCRCId
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