Enum VipsExtend
#[repr(u32)]pub enum VipsExtend {
VIPS_EXTEND_BLACK = 0,
VIPS_EXTEND_COPY = 1,
VIPS_EXTEND_REPEAT = 2,
VIPS_EXTEND_MIRROR = 3,
VIPS_EXTEND_WHITE = 4,
VIPS_EXTEND_BACKGROUND = 5,
VIPS_EXTEND_LAST = 6,
}Variants§
VIPS_EXTEND_BLACK = 0
VIPS_EXTEND_COPY = 1
VIPS_EXTEND_REPEAT = 2
VIPS_EXTEND_MIRROR = 3
VIPS_EXTEND_WHITE = 4
VIPS_EXTEND_BACKGROUND = 5
VIPS_EXTEND_LAST = 6
Trait Implementations§
§impl Clone for VipsExtend
impl Clone for VipsExtend
§fn clone(&self) -> VipsExtend
fn clone(&self) -> VipsExtend
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 VipsExtend
impl Debug for VipsExtend
§impl Hash for VipsExtend
impl Hash for VipsExtend
§impl PartialEq for VipsExtend
impl PartialEq for VipsExtend
impl Copy for VipsExtend
impl Eq for VipsExtend
impl StructuralPartialEq for VipsExtend
Auto Trait Implementations§
impl Freeze for VipsExtend
impl RefUnwindSafe for VipsExtend
impl Send for VipsExtend
impl Sync for VipsExtend
impl Unpin for VipsExtend
impl UnwindSafe for VipsExtend
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