pub struct GeneticInfo {
pub dataset: Option<String>,
pub genetics: Option<GeneticsField>,
}Expand description
Contents of genetic_info.json.
Describes the genetic information associated with participants in the dataset. This is a root-level file that links to external genetic databases.
Fields§
§dataset: Option<String>Name of the dataset.
genetics: Option<GeneticsField>Genetic database reference information.
Implementations§
Trait Implementations§
Source§impl Clone for GeneticInfo
impl Clone for GeneticInfo
Source§fn clone(&self) -> GeneticInfo
fn clone(&self) -> GeneticInfo
Returns a duplicate 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 GeneticInfo
impl Debug for GeneticInfo
Source§impl<'de> Deserialize<'de> for GeneticInfo
impl<'de> Deserialize<'de> for GeneticInfo
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 GeneticInfo
impl RefUnwindSafe for GeneticInfo
impl Send for GeneticInfo
impl Sync for GeneticInfo
impl Unpin for GeneticInfo
impl UnsafeUnpin for GeneticInfo
impl UnwindSafe for GeneticInfo
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