pub enum TiffTagValue {
Show 16 variants
Offset(u32),
ParsedByte(Vec<u8>),
ParsedAscii(String),
ParsedShort(u16),
ParsedShorts(Vec<u16>),
ParsedLong(u32),
ParsedLongs(Vec<u32>),
ParsedRational(Vec<(u32, u32)>),
ParsedSByte(Vec<i8>),
ParsedSShort(Vec<i16>),
ParsedSLong(Vec<i32>),
ParsedSRational(Vec<(i32, i32)>),
ParsedFloat(f32),
ParsedFloats(Vec<f32>),
ParsedDouble(f64),
ParsedDoubles(Vec<f64>),
}
Variants§
Offset(u32)
ParsedByte(Vec<u8>)
ParsedAscii(String)
ParsedShort(u16)
ParsedShorts(Vec<u16>)
ParsedLong(u32)
ParsedLongs(Vec<u32>)
ParsedRational(Vec<(u32, u32)>)
ParsedSByte(Vec<i8>)
ParsedSShort(Vec<i16>)
ParsedSLong(Vec<i32>)
ParsedSRational(Vec<(i32, i32)>)
ParsedFloat(f32)
ParsedFloats(Vec<f32>)
ParsedDouble(f64)
ParsedDoubles(Vec<f64>)
Trait Implementations§
Source§impl Clone for TiffTagValue
impl Clone for TiffTagValue
Source§fn clone(&self) -> TiffTagValue
fn clone(&self) -> TiffTagValue
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 moreAuto Trait Implementations§
impl Freeze for TiffTagValue
impl RefUnwindSafe for TiffTagValue
impl Send for TiffTagValue
impl Sync for TiffTagValue
impl Unpin for TiffTagValue
impl UnwindSafe for TiffTagValue
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