Struct fhir_rs::datatype::primitive::UnsignedIntDt
source · pub struct UnsignedIntDt {
pub id: Option<String>,
pub extension: Option<Vec<Extension>>,
pub value: Option<UnsignedInt>,
}
Fields§
§id: Option<String>
xml:id (or equivalent in JSON)
extension: Option<Vec<Extension>>
Additional content defined by implementations
value: Option<UnsignedInt>
Primitive value for unsignedInt
Trait Implementations§
source§impl Clone for UnsignedIntDt
impl Clone for UnsignedIntDt
source§fn clone(&self) -> UnsignedIntDt
fn clone(&self) -> UnsignedIntDt
Returns a copy 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 UnsignedIntDt
impl Debug for UnsignedIntDt
source§impl<'de> Deserialize<'de> for UnsignedIntDt
impl<'de> Deserialize<'de> for UnsignedIntDt
fn deserialize<De>(deserializer: De) -> Result<Self>where
De: Deserializer<'de>,
source§impl Element for UnsignedIntDt
impl Element for UnsignedIntDt
fn has_id(&self) -> bool
fn id(&self) -> &Option<String>
fn set_id<T: Into<String>>(self, id: T) -> Self
fn has_extension(&self) -> bool
fn extension(&self) -> &Option<Vec<Extension>>
fn set_extension(self, ext: Vec<Extension>) -> Self
fn add_extension(self, ext: Extension) -> Self
source§impl FromStr for UnsignedIntDt
impl FromStr for UnsignedIntDt
source§impl Primitive for UnsignedIntDt
impl Primitive for UnsignedIntDt
source§impl Serialize for UnsignedIntDt
impl Serialize for UnsignedIntDt
Auto Trait Implementations§
impl RefUnwindSafe for UnsignedIntDt
impl Send for UnsignedIntDt
impl Sync for UnsignedIntDt
impl Unpin for UnsignedIntDt
impl UnwindSafe for UnsignedIntDt
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