pub struct FrameSpec {
pub path: PathBuf,
pub illumination_index: Option<usize>,
pub exposure_time: f64,
pub weight: f64,
pub label: Option<String>,
}Expand description
Path and acquisition metadata for one measurement frame.
Fields§
§path: PathBuf§illumination_index: Option<usize>§exposure_time: f64§weight: f64§label: Option<String>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FrameSpec
impl<'de> Deserialize<'de> for FrameSpec
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 FrameSpec
impl RefUnwindSafe for FrameSpec
impl Send for FrameSpec
impl Sync for FrameSpec
impl Unpin for FrameSpec
impl UnsafeUnpin for FrameSpec
impl UnwindSafe for FrameSpec
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