pub struct WellSample {
pub id: String,
pub position_x: Option<f32>,
pub position_x_unit: UnitsLength,
pub position_y: Option<f32>,
pub position_y_unit: UnitsLength,
pub timepoint: Option<String>,
pub index: i32,
pub image_ref: Option<AnnotationRef>,
}Fields§
§id: String§position_x: Option<f32>§position_x_unit: UnitsLength§position_y: Option<f32>§position_y_unit: UnitsLength§timepoint: Option<String>§index: i32§image_ref: Option<AnnotationRef>Implementations§
Source§impl WellSample
impl WellSample
pub fn default_position_x_unit() -> UnitsLength
pub fn default_position_y_unit() -> UnitsLength
Trait Implementations§
Source§impl Clone for WellSample
impl Clone for WellSample
Source§fn clone(&self) -> WellSample
fn clone(&self) -> WellSample
Returns a copy of the value. Read more
1.0.0 · 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 WellSample
impl Debug for WellSample
Source§impl<'de> Deserialize<'de> for WellSample
impl<'de> Deserialize<'de> for WellSample
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 WellSample
impl RefUnwindSafe for WellSample
impl Send for WellSample
impl Sync for WellSample
impl Unpin for WellSample
impl UnwindSafe for WellSample
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