pub enum PixelType {
Gray8 = 0,
Gray16 = 1,
Gray32Float = 2,
Bgr24 = 3,
Bgr48 = 4,
Bgr96Float = 8,
Bgra32 = 9,
Gray64ComplexFloat = 10,
Bgr192ComplexFloat = 11,
Gray32 = 12,
Gray64Float = 13,
}Expand description
pixel type
Variants§
Gray8 = 0
Gray16 = 1
Gray32Float = 2
Bgr24 = 3
Bgr48 = 4
Bgr96Float = 8
Bgra32 = 9
Gray64ComplexFloat = 10
Bgr192ComplexFloat = 11
Gray32 = 12
Gray64Float = 13
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PixelType
impl RefUnwindSafe for PixelType
impl Send for PixelType
impl Sync for PixelType
impl Unpin for PixelType
impl UnsafeUnpin for PixelType
impl UnwindSafe for PixelType
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