#[repr(u16)]pub enum PixType {
Bool1Bit(Option<bool>),
UInt2(Option<u8>),
UInt4(Option<u8>),
Int8(Option<i8>),
UInt8(Option<u8>),
Int16(Option<i16>),
UInt16(Option<u16>),
Int32(Option<i32>),
UInt32(Option<u32>),
Float32(Option<f32>),
Float64(Option<f64>),
}Expand description
Pixel type + optional nodata value
Variants§
Bool1Bit(Option<bool>)
UInt2(Option<u8>)
UInt4(Option<u8>)
Int8(Option<i8>)
UInt8(Option<u8>)
Int16(Option<i16>)
UInt16(Option<u16>)
Int32(Option<i32>)
UInt32(Option<u32>)
Float32(Option<f32>)
Float64(Option<f64>)
Implementations§
Trait Implementations§
Source§impl PartialOrd for PixType
impl PartialOrd for PixType
impl Copy for PixType
impl StructuralPartialEq for PixType
Auto Trait Implementations§
impl Freeze for PixType
impl RefUnwindSafe for PixType
impl Send for PixType
impl Sync for PixType
impl Unpin for PixType
impl UnwindSafe for PixType
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