#[non_exhaustive]#[repr(u8)]pub enum OutputBitDepth {
Bit8 = 0,
Bit10 = 1,
Reserved(u8),
}Expand description
Output bit depth as defined in Table 33.
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.
Implementations§
Trait Implementations§
Source§impl Clone for OutputBitDepth
impl Clone for OutputBitDepth
Source§fn clone(&self) -> OutputBitDepth
fn clone(&self) -> OutputBitDepth
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 OutputBitDepth
Source§impl Debug for OutputBitDepth
impl Debug for OutputBitDepth
Source§impl Display for OutputBitDepth
impl Display for OutputBitDepth
impl Eq for OutputBitDepth
Source§impl PartialEq for OutputBitDepth
impl PartialEq for OutputBitDepth
Source§impl Serialize for OutputBitDepth
Available on crate feature serde only.
impl Serialize for OutputBitDepth
Available on crate feature
serde only.impl StructuralPartialEq for OutputBitDepth
Auto Trait Implementations§
impl Freeze for OutputBitDepth
impl RefUnwindSafe for OutputBitDepth
impl Send for OutputBitDepth
impl Sync for OutputBitDepth
impl Unpin for OutputBitDepth
impl UnsafeUnpin for OutputBitDepth
impl UnwindSafe for OutputBitDepth
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