Enum VipsForeignTiffCompression
#[repr(u32)]pub enum VipsForeignTiffCompression {
VIPS_FOREIGN_TIFF_COMPRESSION_NONE = 0,
VIPS_FOREIGN_TIFF_COMPRESSION_JPEG = 1,
VIPS_FOREIGN_TIFF_COMPRESSION_DEFLATE = 2,
VIPS_FOREIGN_TIFF_COMPRESSION_PACKBITS = 3,
VIPS_FOREIGN_TIFF_COMPRESSION_CCITTFAX4 = 4,
VIPS_FOREIGN_TIFF_COMPRESSION_LZW = 5,
VIPS_FOREIGN_TIFF_COMPRESSION_WEBP = 6,
VIPS_FOREIGN_TIFF_COMPRESSION_ZSTD = 7,
VIPS_FOREIGN_TIFF_COMPRESSION_JP2K = 8,
VIPS_FOREIGN_TIFF_COMPRESSION_LAST = 9,
}Variants§
VIPS_FOREIGN_TIFF_COMPRESSION_NONE = 0
VIPS_FOREIGN_TIFF_COMPRESSION_JPEG = 1
VIPS_FOREIGN_TIFF_COMPRESSION_DEFLATE = 2
VIPS_FOREIGN_TIFF_COMPRESSION_PACKBITS = 3
VIPS_FOREIGN_TIFF_COMPRESSION_CCITTFAX4 = 4
VIPS_FOREIGN_TIFF_COMPRESSION_LZW = 5
VIPS_FOREIGN_TIFF_COMPRESSION_WEBP = 6
VIPS_FOREIGN_TIFF_COMPRESSION_ZSTD = 7
VIPS_FOREIGN_TIFF_COMPRESSION_JP2K = 8
VIPS_FOREIGN_TIFF_COMPRESSION_LAST = 9
Trait Implementations§
§impl Clone for VipsForeignTiffCompression
impl Clone for VipsForeignTiffCompression
§fn clone(&self) -> VipsForeignTiffCompression
fn clone(&self) -> VipsForeignTiffCompression
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 VipsForeignTiffCompression
impl Debug for VipsForeignTiffCompression
§impl Hash for VipsForeignTiffCompression
impl Hash for VipsForeignTiffCompression
§impl PartialEq for VipsForeignTiffCompression
impl PartialEq for VipsForeignTiffCompression
impl Copy for VipsForeignTiffCompression
impl Eq for VipsForeignTiffCompression
impl StructuralPartialEq for VipsForeignTiffCompression
Auto Trait Implementations§
impl Freeze for VipsForeignTiffCompression
impl RefUnwindSafe for VipsForeignTiffCompression
impl Send for VipsForeignTiffCompression
impl Sync for VipsForeignTiffCompression
impl Unpin for VipsForeignTiffCompression
impl UnwindSafe for VipsForeignTiffCompression
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