pub struct DOUBLE(pub f64);Expand description
Double precision (8-byte) IEEE format.
Tuple Fields§
§0: f64Implementations§
Source§impl DOUBLE
impl DOUBLE
Sourcepub fn values<T: AsRef<[f64]>>(values: T) -> TiffTypeValues<DOUBLE>
pub fn values<T: AsRef<[f64]>>(values: T) -> TiffTypeValues<DOUBLE>
Constructs a TiffTypeValues of DOUBLEs from a vector of
f64.
Sourcepub fn single(value: f64) -> TiffTypeValues<DOUBLE>
pub fn single(value: f64) -> TiffTypeValues<DOUBLE>
Constructs a TiffTypeValues consisting of a single DOUBLE.
In other words, marks this DOUBLE as the single value of its
field.
Trait Implementations§
impl StructuralPartialEq for DOUBLE
Auto Trait Implementations§
impl Freeze for DOUBLE
impl RefUnwindSafe for DOUBLE
impl Send for DOUBLE
impl Sync for DOUBLE
impl Unpin for DOUBLE
impl UnwindSafe for DOUBLE
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