pub struct FrameMetadata {
pub frame_index: usize,
pub illumination_index: Option<usize>,
pub original_frame_index: Option<usize>,
pub original_illumination_index: Option<usize>,
pub exposure_time: f64,
pub weight: f64,
pub label: Option<String>,
}Fields§
§frame_index: usize§illumination_index: Option<usize>§original_frame_index: Option<usize>Frame index in the original acquisition before subsetting or reordering.
original_illumination_index: Option<usize>Illumination index in the original acquisition before subsetting.
exposure_time: f64§weight: f64§label: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for FrameMetadata
impl Clone for FrameMetadata
Source§fn clone(&self) -> FrameMetadata
fn clone(&self) -> FrameMetadata
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 moreSource§impl Debug for FrameMetadata
impl Debug for FrameMetadata
Source§impl<'de> Deserialize<'de> for FrameMetadata
impl<'de> Deserialize<'de> for FrameMetadata
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FrameMetadata
impl RefUnwindSafe for FrameMetadata
impl Send for FrameMetadata
impl Sync for FrameMetadata
impl Unpin for FrameMetadata
impl UnsafeUnpin for FrameMetadata
impl UnwindSafe for FrameMetadata
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