#[non_exhaustive]#[repr(u32)]pub enum DvRgbRange {
Auto = 0,
Limited = 1,
Full = 2,
}
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.
Trait Implementations§
Source§impl AsRef<u32> for DvRgbRange
impl AsRef<u32> for DvRgbRange
Source§impl Clone for DvRgbRange
impl Clone for DvRgbRange
Source§fn clone(&self) -> DvRgbRange
fn clone(&self) -> DvRgbRange
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 DvRgbRange
impl Debug for DvRgbRange
Source§impl Deref for DvRgbRange
impl Deref for DvRgbRange
Source§impl Display for DvRgbRange
impl Display for DvRgbRange
Source§impl From<DvRgbRange> for u32
impl From<DvRgbRange> for u32
Source§fn from(data: DvRgbRange) -> Self
fn from(data: DvRgbRange) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DvRgbRange
impl PartialEq for DvRgbRange
Source§impl TryFrom<u32> for DvRgbRange
impl TryFrom<u32> for DvRgbRange
impl Copy for DvRgbRange
impl Eq for DvRgbRange
impl StructuralPartialEq for DvRgbRange
Auto Trait Implementations§
impl Freeze for DvRgbRange
impl RefUnwindSafe for DvRgbRange
impl Send for DvRgbRange
impl Sync for DvRgbRange
impl Unpin for DvRgbRange
impl UnwindSafe for DvRgbRange
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