#[repr(u32)]pub enum VipsArgumentFlags {
VIPS_ARGUMENT_NONE = 0,
VIPS_ARGUMENT_REQUIRED = 1,
VIPS_ARGUMENT_CONSTRUCT = 2,
VIPS_ARGUMENT_SET_ONCE = 4,
VIPS_ARGUMENT_SET_ALWAYS = 8,
VIPS_ARGUMENT_INPUT = 16,
VIPS_ARGUMENT_OUTPUT = 32,
VIPS_ARGUMENT_DEPRECATED = 64,
VIPS_ARGUMENT_MODIFY = 128,
VIPS_ARGUMENT_NON_HASHABLE = 256,
}Variants§
VIPS_ARGUMENT_NONE = 0
VIPS_ARGUMENT_REQUIRED = 1
VIPS_ARGUMENT_CONSTRUCT = 2
VIPS_ARGUMENT_SET_ONCE = 4
VIPS_ARGUMENT_SET_ALWAYS = 8
VIPS_ARGUMENT_INPUT = 16
VIPS_ARGUMENT_OUTPUT = 32
VIPS_ARGUMENT_DEPRECATED = 64
VIPS_ARGUMENT_MODIFY = 128
VIPS_ARGUMENT_NON_HASHABLE = 256
Trait Implementations§
Source§impl Clone for VipsArgumentFlags
impl Clone for VipsArgumentFlags
Source§fn clone(&self) -> VipsArgumentFlags
fn clone(&self) -> VipsArgumentFlags
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 VipsArgumentFlags
impl Debug for VipsArgumentFlags
Source§impl Hash for VipsArgumentFlags
impl Hash for VipsArgumentFlags
Source§impl PartialEq for VipsArgumentFlags
impl PartialEq for VipsArgumentFlags
impl Copy for VipsArgumentFlags
impl Eq for VipsArgumentFlags
impl StructuralPartialEq for VipsArgumentFlags
Auto Trait Implementations§
impl Freeze for VipsArgumentFlags
impl RefUnwindSafe for VipsArgumentFlags
impl Send for VipsArgumentFlags
impl Sync for VipsArgumentFlags
impl Unpin for VipsArgumentFlags
impl UnwindSafe for VipsArgumentFlags
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