#[repr(u32)]pub enum VipsSaveable {
VIPS_SAVEABLE_MONO = 0,
VIPS_SAVEABLE_RGB = 1,
VIPS_SAVEABLE_RGBA = 2,
VIPS_SAVEABLE_RGBA_ONLY = 3,
VIPS_SAVEABLE_RGB_CMYK = 4,
VIPS_SAVEABLE_ANY = 5,
VIPS_SAVEABLE_LAST = 6,
}Variants§
VIPS_SAVEABLE_MONO = 0
VIPS_SAVEABLE_RGB = 1
VIPS_SAVEABLE_RGBA = 2
VIPS_SAVEABLE_RGBA_ONLY = 3
VIPS_SAVEABLE_RGB_CMYK = 4
VIPS_SAVEABLE_ANY = 5
VIPS_SAVEABLE_LAST = 6
Trait Implementations§
Source§impl Clone for VipsSaveable
impl Clone for VipsSaveable
Source§fn clone(&self) -> VipsSaveable
fn clone(&self) -> VipsSaveable
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 VipsSaveable
impl Debug for VipsSaveable
Source§impl Hash for VipsSaveable
impl Hash for VipsSaveable
Source§impl PartialEq for VipsSaveable
impl PartialEq for VipsSaveable
impl Copy for VipsSaveable
impl Eq for VipsSaveable
impl StructuralPartialEq for VipsSaveable
Auto Trait Implementations§
impl Freeze for VipsSaveable
impl RefUnwindSafe for VipsSaveable
impl Send for VipsSaveable
impl Sync for VipsSaveable
impl Unpin for VipsSaveable
impl UnwindSafe for VipsSaveable
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