#[repr(u8)]pub enum TiffTagFormat {
Byte = 1,
Ascii = 2,
Short = 3,
Long = 4,
Rational = 5,
SByte = 6,
Undefined = 7,
SShort = 8,
SLong = 9,
SRational = 10,
Float = 11,
Double = 12,
}
Variants§
Byte = 1
u8
Ascii = 2
i8 >= 0 (null terminated count)
Short = 3
u16
Long = 4
u32
Rational = 5
u32/u32 = u64
SByte = 6
i8
Undefined = 7
u8?
SShort = 8
i16,
SLong = 9
i32,
SRational = 10
i32/i32 = u64
Float = 11
f32
Double = 12
f64
Implementations§
Trait Implementations§
Source§impl Clone for TiffTagFormat
impl Clone for TiffTagFormat
Source§fn clone(&self) -> TiffTagFormat
fn clone(&self) -> TiffTagFormat
Returns a copy 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 TiffTagFormat
impl Debug for TiffTagFormat
Source§impl PartialEq for TiffTagFormat
impl PartialEq for TiffTagFormat
Source§impl TryFrom<u16> for TiffTagFormat
impl TryFrom<u16> for TiffTagFormat
impl Copy for TiffTagFormat
impl Eq for TiffTagFormat
impl StructuralPartialEq for TiffTagFormat
Auto Trait Implementations§
impl Freeze for TiffTagFormat
impl RefUnwindSafe for TiffTagFormat
impl Send for TiffTagFormat
impl Sync for TiffTagFormat
impl Unpin for TiffTagFormat
impl UnwindSafe for TiffTagFormat
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