Enum VipsIntent
#[repr(u32)]pub enum VipsIntent {
VIPS_INTENT_PERCEPTUAL = 0,
VIPS_INTENT_RELATIVE = 1,
VIPS_INTENT_SATURATION = 2,
VIPS_INTENT_ABSOLUTE = 3,
VIPS_INTENT_AUTO = 32,
VIPS_INTENT_LAST = 33,
}Variants§
VIPS_INTENT_PERCEPTUAL = 0
VIPS_INTENT_RELATIVE = 1
VIPS_INTENT_SATURATION = 2
VIPS_INTENT_ABSOLUTE = 3
VIPS_INTENT_AUTO = 32
VIPS_INTENT_LAST = 33
Trait Implementations§
§impl Clone for VipsIntent
impl Clone for VipsIntent
§fn clone(&self) -> VipsIntent
fn clone(&self) -> VipsIntent
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 VipsIntent
impl Debug for VipsIntent
§impl Hash for VipsIntent
impl Hash for VipsIntent
§impl PartialEq for VipsIntent
impl PartialEq for VipsIntent
impl Copy for VipsIntent
impl Eq for VipsIntent
impl StructuralPartialEq for VipsIntent
Auto Trait Implementations§
impl Freeze for VipsIntent
impl RefUnwindSafe for VipsIntent
impl Send for VipsIntent
impl Sync for VipsIntent
impl Unpin for VipsIntent
impl UnwindSafe for VipsIntent
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