pub struct Dataset {
pub name: Option<String>,
pub id: String,
pub description: Option<String>,
pub experimenter_ref: Option<AnnotationRef>,
pub experimenter_group_ref: Option<AnnotationRef>,
pub image_ref: Vec<AnnotationRef>,
pub annotation_ref: Vec<AnnotationRef>,
}Fields§
§name: Option<String>§id: String§description: Option<String>§experimenter_ref: Option<AnnotationRef>§experimenter_group_ref: Option<AnnotationRef>§image_ref: Vec<AnnotationRef>§annotation_ref: Vec<AnnotationRef>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Dataset
impl<'de> Deserialize<'de> for Dataset
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 Dataset
impl RefUnwindSafe for Dataset
impl Send for Dataset
impl Sync for Dataset
impl Unpin for Dataset
impl UnwindSafe for Dataset
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