Enum VipsBandFormat
#[repr(i32)]pub enum VipsBandFormat {
VIPS_FORMAT_NOTSET = -1,
VIPS_FORMAT_UCHAR = 0,
VIPS_FORMAT_CHAR = 1,
VIPS_FORMAT_USHORT = 2,
VIPS_FORMAT_SHORT = 3,
VIPS_FORMAT_UINT = 4,
VIPS_FORMAT_INT = 5,
VIPS_FORMAT_FLOAT = 6,
VIPS_FORMAT_COMPLEX = 7,
VIPS_FORMAT_DOUBLE = 8,
VIPS_FORMAT_DPCOMPLEX = 9,
VIPS_FORMAT_LAST = 10,
}Variants§
VIPS_FORMAT_NOTSET = -1
VIPS_FORMAT_UCHAR = 0
VIPS_FORMAT_CHAR = 1
VIPS_FORMAT_USHORT = 2
VIPS_FORMAT_SHORT = 3
VIPS_FORMAT_UINT = 4
VIPS_FORMAT_INT = 5
VIPS_FORMAT_FLOAT = 6
VIPS_FORMAT_COMPLEX = 7
VIPS_FORMAT_DOUBLE = 8
VIPS_FORMAT_DPCOMPLEX = 9
VIPS_FORMAT_LAST = 10
Trait Implementations§
§impl Clone for VipsBandFormat
impl Clone for VipsBandFormat
§fn clone(&self) -> VipsBandFormat
fn clone(&self) -> VipsBandFormat
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 more§impl Debug for VipsBandFormat
impl Debug for VipsBandFormat
§impl Hash for VipsBandFormat
impl Hash for VipsBandFormat
§impl PartialEq for VipsBandFormat
impl PartialEq for VipsBandFormat
impl Copy for VipsBandFormat
impl Eq for VipsBandFormat
impl StructuralPartialEq for VipsBandFormat
Auto Trait Implementations§
impl Freeze for VipsBandFormat
impl RefUnwindSafe for VipsBandFormat
impl Send for VipsBandFormat
impl Sync for VipsBandFormat
impl Unpin for VipsBandFormat
impl UnwindSafe for VipsBandFormat
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