pub struct Instrument {
pub id: String,
pub microscope: Option<Microscope>,
pub light_source_group: Vec<LightSourceGroup>,
pub detector: Vec<Detector>,
pub objective: Vec<Objective>,
pub filter_set: Vec<FilterSet>,
pub filter: Vec<Filter>,
pub dichroic: Vec<Dichroic>,
pub annotation_ref: Vec<AnnotationRef>,
}Fields§
§id: String§microscope: Option<Microscope>§light_source_group: Vec<LightSourceGroup>§detector: Vec<Detector>§objective: Vec<Objective>§filter_set: Vec<FilterSet>§filter: Vec<Filter>§dichroic: Vec<Dichroic>§annotation_ref: Vec<AnnotationRef>Implementations§
Trait Implementations§
Source§impl Clone for Instrument
impl Clone for Instrument
Source§fn clone(&self) -> Instrument
fn clone(&self) -> Instrument
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 Instrument
impl Debug for Instrument
Source§impl Default for Instrument
impl Default for Instrument
Source§fn default() -> Instrument
fn default() -> Instrument
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Instrument
impl<'de> Deserialize<'de> for Instrument
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
Source§impl PartialEq for Instrument
impl PartialEq for Instrument
Source§fn eq(&self, other: &Instrument) -> bool
fn eq(&self, other: &Instrument) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for Instrument
impl Serialize for Instrument
impl StructuralPartialEq for Instrument
Auto Trait Implementations§
impl Freeze for Instrument
impl RefUnwindSafe for Instrument
impl Send for Instrument
impl Sync for Instrument
impl Unpin for Instrument
impl UnsafeUnpin for Instrument
impl UnwindSafe for Instrument
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