pub struct Plate {Show 17 fields
pub id: String,
pub name: Option<String>,
pub status: Option<String>,
pub external_identifier: Option<String>,
pub column_naming_convention: Option<NamingConventionType>,
pub row_naming_convention: Option<NamingConventionType>,
pub well_origin_x: Option<f32>,
pub well_origin_x_unit: UnitsLength,
pub well_origin_y: Option<f32>,
pub well_origin_y_unit: UnitsLength,
pub rows: Option<i32>,
pub columns: Option<i32>,
pub field_index: Option<i32>,
pub description: Option<String>,
pub well: Vec<Well>,
pub annotation_ref: Vec<AnnotationRef>,
pub plate_acquisition: Vec<PlateAcquisition>,
}Fields§
§id: String§name: Option<String>§status: Option<String>§external_identifier: Option<String>§column_naming_convention: Option<NamingConventionType>§row_naming_convention: Option<NamingConventionType>§well_origin_x: Option<f32>§well_origin_x_unit: UnitsLength§well_origin_y: Option<f32>§well_origin_y_unit: UnitsLength§rows: Option<i32>§columns: Option<i32>§field_index: Option<i32>§description: Option<String>§well: Vec<Well>§annotation_ref: Vec<AnnotationRef>§plate_acquisition: Vec<PlateAcquisition>Implementations§
Source§impl Plate
impl Plate
pub fn default_well_origin_x_unit() -> UnitsLength
pub fn default_well_origin_y_unit() -> UnitsLength
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Plate
impl<'de> Deserialize<'de> for Plate
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 Plate
impl RefUnwindSafe for Plate
impl Send for Plate
impl Sync for Plate
impl Unpin for Plate
impl UnwindSafe for Plate
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