#[repr(i32)]pub enum ColorImageFormat {
None = 0,
Rgba = 1,
Yuv = 2,
Bgra = 3,
Bayer = 4,
Yuy2 = 5,
}Variants§
Trait Implementations§
Source§impl Clone for ColorImageFormat
impl Clone for ColorImageFormat
Source§fn clone(&self) -> ColorImageFormat
fn clone(&self) -> ColorImageFormat
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 ColorImageFormat
impl Debug for ColorImageFormat
Source§impl Hash for ColorImageFormat
impl Hash for ColorImageFormat
Source§impl PartialEq for ColorImageFormat
impl PartialEq for ColorImageFormat
impl Eq for ColorImageFormat
impl StructuralPartialEq for ColorImageFormat
Auto Trait Implementations§
impl Freeze for ColorImageFormat
impl RefUnwindSafe for ColorImageFormat
impl Send for ColorImageFormat
impl Sync for ColorImageFormat
impl Unpin for ColorImageFormat
impl UnwindSafe for ColorImageFormat
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