#[repr(u8)]pub enum PlaneRole {
Gray = 0,
Y = 1,
U = 2,
V = 3,
R = 4,
G = 5,
B = 6,
}Expand description
Semantic role of one plane.
Variants§
Gray = 0
Gray plane.
Y = 1
Y luma plane.
U = 2
U chroma plane.
V = 3
V chroma plane.
R = 4
R plane.
G = 5
G plane.
B = 6
B plane.
Trait Implementations§
impl Copy for PlaneRole
impl Eq for PlaneRole
impl StructuralPartialEq for PlaneRole
Auto Trait Implementations§
impl Freeze for PlaneRole
impl RefUnwindSafe for PlaneRole
impl Send for PlaneRole
impl Sync for PlaneRole
impl Unpin for PlaneRole
impl UnsafeUnpin for PlaneRole
impl UnwindSafe for PlaneRole
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