pub struct TiffImageMeta {Show 13 fields
pub stage: u32,
pub cycle: u32,
pub step: u32,
pub point: u32,
pub emission: u8,
pub excitation: u8,
pub exposure_ms: f64,
pub exposure_index: u32,
pub timestamp: f64,
pub block_temperatures: Vec<f64>,
pub sample_temperatures: Vec<f64>,
pub cover_temperature: f64,
pub filename: String,
}Fields§
§stage: u32§cycle: u32§step: u32§point: u32§emission: u8§excitation: u8§exposure_ms: f64§exposure_index: u32§timestamp: f64§block_temperatures: Vec<f64>§sample_temperatures: Vec<f64>§cover_temperature: f64§filename: StringTrait Implementations§
Source§impl Clone for TiffImageMeta
impl Clone for TiffImageMeta
Source§fn clone(&self) -> TiffImageMeta
fn clone(&self) -> TiffImageMeta
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TiffImageMeta
impl RefUnwindSafe for TiffImageMeta
impl Send for TiffImageMeta
impl Sync for TiffImageMeta
impl Unpin for TiffImageMeta
impl UnsafeUnpin for TiffImageMeta
impl UnwindSafe for TiffImageMeta
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more