pub enum ChromosomeHuman {
Show 25 variants
V1(Option<Element>),
V10(Option<Element>),
V11(Option<Element>),
V12(Option<Element>),
V13(Option<Element>),
V14(Option<Element>),
V15(Option<Element>),
V16(Option<Element>),
V17(Option<Element>),
V18(Option<Element>),
V19(Option<Element>),
V2(Option<Element>),
V20(Option<Element>),
V21(Option<Element>),
V22(Option<Element>),
V3(Option<Element>),
V4(Option<Element>),
V5(Option<Element>),
V6(Option<Element>),
V7(Option<Element>),
V8(Option<Element>),
V9(Option<Element>),
X(Option<Element>),
Y(Option<Element>),
Null(Option<Element>),
}Variants§
V1(Option<Element>)
chromosome 1
V10(Option<Element>)
chromosome 10
V11(Option<Element>)
chromosome 11
V12(Option<Element>)
chromosome 12
V13(Option<Element>)
chromosome 13
V14(Option<Element>)
chromosome 14
V15(Option<Element>)
chromosome 15
V16(Option<Element>)
chromosome 16
V17(Option<Element>)
chromosome 17
V18(Option<Element>)
chromosome 18
V19(Option<Element>)
chromosome 19
V2(Option<Element>)
chromosome 2
V20(Option<Element>)
chromosome 20
V21(Option<Element>)
chromosome 21
V22(Option<Element>)
chromosome 22
V3(Option<Element>)
chromosome 3
V4(Option<Element>)
chromosome 4
V5(Option<Element>)
chromosome 5
V6(Option<Element>)
chromosome 6
V7(Option<Element>)
chromosome 7
V8(Option<Element>)
chromosome 8
V9(Option<Element>)
chromosome 9
X(Option<Element>)
chromosome X
Y(Option<Element>)
chromosome Y
Null(Option<Element>)
If value is missing and just the element is present.
Trait Implementations§
Source§impl Clone for ChromosomeHuman
impl Clone for ChromosomeHuman
Source§fn clone(&self) -> ChromosomeHuman
fn clone(&self) -> ChromosomeHuman
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 ChromosomeHuman
impl Debug for ChromosomeHuman
Source§impl Default for ChromosomeHuman
impl Default for ChromosomeHuman
Source§impl FHIRJSONDeserializer for ChromosomeHuman
impl FHIRJSONDeserializer for ChromosomeHuman
fn from_json_str(s: &str) -> Result<Self, DeserializeError>
fn from_serde_value( json: &Value, context: Context<'_>, ) -> Result<Self, DeserializeError>
Source§impl FHIRJSONSerializer for ChromosomeHuman
impl FHIRJSONSerializer for ChromosomeHuman
fn serialize_value( &self, writer: &mut dyn Write, ) -> Result<bool, SerializeError>
fn serialize_extension( &self, writer: &mut dyn Write, ) -> Result<bool, SerializeError>
fn serialize_field( &self, field: &str, writer: &mut dyn Write, ) -> Result<bool, SerializeError>
fn is_fp_primitive(&self) -> bool
Source§impl MetaValue for ChromosomeHuman
impl MetaValue for ChromosomeHuman
fn fields(&self) -> Vec<&'static str>
fn get_field<'a>(&'a self, field: &str) -> Option<&'a dyn MetaValue>
fn get_field_mut<'a>(&'a mut self, field: &str) -> Option<&'a mut dyn MetaValue>
fn get_index<'a>(&'a self, _index: usize) -> Option<&'a dyn MetaValue>
fn get_index_mut<'a>( &'a mut self, _index: usize, ) -> Option<&'a mut dyn MetaValue>
fn flatten(&self) -> Vec<&dyn MetaValue>
fn as_any(&self) -> &dyn Any
fn typename(&self) -> &'static str
Auto Trait Implementations§
impl Freeze for ChromosomeHuman
impl RefUnwindSafe for ChromosomeHuman
impl Send for ChromosomeHuman
impl Sync for ChromosomeHuman
impl Unpin for ChromosomeHuman
impl UnwindSafe for ChromosomeHuman
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more