[][src]Enum tiff::decoder::ifd::Value

pub enum Value {
    Byte(u8),
    Short(u16),
    Signed(i32),
    SignedBig(i64),
    Unsigned(u32),
    UnsignedBig(u64),
    Float(f32),
    Double(f64),
    List(Vec<Value>),
    Rational(u32u32),
    RationalBig(u64u64),
    SRational(i32i32),
    SRationalBig(i64i64),
    Ascii(String),
    // some variants omitted
}

Variants

Byte(u8)
Short(u16)
Signed(i32)
SignedBig(i64)
Unsigned(u32)
UnsignedBig(u64)
Float(f32)
Double(f64)
List(Vec<Value>)
Rational(u32u32)
RationalBig(u64u64)
SRational(i32i32)
SRationalBig(i64i64)
Ascii(String)

Implementations

impl Value[src]

pub fn into_u8(self) -> TiffResult<u8>[src]

pub fn into_u16(self) -> TiffResult<u16>[src]

pub fn into_u32(self) -> TiffResult<u32>[src]

pub fn into_i32(self) -> TiffResult<i32>[src]

pub fn into_u64(self) -> TiffResult<u64>[src]

pub fn into_i64(self) -> TiffResult<i64>[src]

pub fn into_f32(self) -> TiffResult<f32>[src]

pub fn into_f64(self) -> TiffResult<f64>[src]

pub fn into_string(self) -> TiffResult<String>[src]

pub fn into_u32_vec(self) -> TiffResult<Vec<u32>>[src]

pub fn into_u8_vec(self) -> TiffResult<Vec<u8>>[src]

pub fn into_u16_vec(self) -> TiffResult<Vec<u16>>[src]

pub fn into_i32_vec(self) -> TiffResult<Vec<i32>>[src]

pub fn into_f32_vec(self) -> TiffResult<Vec<f32>>[src]

pub fn into_f64_vec(self) -> TiffResult<Vec<f64>>[src]

pub fn into_u64_vec(self) -> TiffResult<Vec<u64>>[src]

pub fn into_i64_vec(self) -> TiffResult<Vec<i64>>[src]

Trait Implementations

impl Clone for Value[src]

impl Debug for Value[src]

impl PartialEq<Value> for Value[src]

impl StructuralPartialEq for Value[src]

Auto Trait Implementations

impl RefUnwindSafe for Value

impl Send for Value

impl Sync for Value

impl Unpin for Value

impl UnwindSafe for Value

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.