pub enum Value {
}
Variants
Byte(u8)
Short(u16)
Signed(i32)
SignedBig(i64)
Unsigned(u32)
UnsignedBig(u64)
Float(f32)
Double(f64)
List(Vec<Value>)
Rational(u32, u32)
RationalBig(u64, u64)
SRational(i32, i32)
SRationalBig(i64, i64)
Ascii(String)
Ifd(u32)
IfdBig(u64)
Implementations
sourceimpl Value
impl Value
pub fn into_u8(self) -> TiffResult<u8>
pub fn into_u16(self) -> TiffResult<u16>
pub fn into_u32(self) -> TiffResult<u32>
pub fn into_i32(self) -> TiffResult<i32>
pub fn into_u64(self) -> TiffResult<u64>
pub fn into_i64(self) -> TiffResult<i64>
pub fn into_f32(self) -> TiffResult<f32>
pub fn into_f64(self) -> TiffResult<f64>
pub fn into_string(self) -> TiffResult<String>
pub fn into_u32_vec(self) -> TiffResult<Vec<u32>>
pub fn into_u8_vec(self) -> TiffResult<Vec<u8>>
pub fn into_u16_vec(self) -> TiffResult<Vec<u16>>
pub fn into_i32_vec(self) -> TiffResult<Vec<i32>>
pub fn into_f32_vec(self) -> TiffResult<Vec<f32>>
pub fn into_f64_vec(self) -> TiffResult<Vec<f64>>
pub fn into_u64_vec(self) -> TiffResult<Vec<u64>>
pub fn into_i64_vec(self) -> TiffResult<Vec<i64>>
Trait Implementations
impl StructuralPartialEq for Value
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more