pub struct Well {
pub id: String,
pub column: i32,
pub row: i32,
pub external_description: Option<String>,
pub external_identifier: Option<String>,
pub type: Option<String>,
pub color: i32,
pub well_sample: Vec<WellSample>,
pub reagent_ref: Option<AnnotationRef>,
pub annotation_ref: Vec<AnnotationRef>,
}Fields§
§id: String§column: i32§row: i32§external_description: Option<String>§external_identifier: Option<String>§type: Option<String>§color: i32§well_sample: Vec<WellSample>§reagent_ref: Option<AnnotationRef>§annotation_ref: Vec<AnnotationRef>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Well
impl<'de> Deserialize<'de> for Well
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 Well
impl RefUnwindSafe for Well
impl Send for Well
impl Sync for Well
impl Unpin for Well
impl UnwindSafe for Well
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