Struct fhir_rs::datatype::primitive::Base64BinaryDt
source · pub struct Base64BinaryDt {
pub id: Option<String>,
pub extension: Option<Vec<Extension>>,
pub value: Option<Base64Binary>,
}
Fields§
§id: Option<String>
xml:id (or equivalent in JSON)
extension: Option<Vec<Extension>>
Additional content defined by implementations
value: Option<Base64Binary>
Primitive value for base64Binary
Trait Implementations§
source§impl Clone for Base64BinaryDt
impl Clone for Base64BinaryDt
source§fn clone(&self) -> Base64BinaryDt
fn clone(&self) -> Base64BinaryDt
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 Base64BinaryDt
impl Debug for Base64BinaryDt
source§impl<'de> Deserialize<'de> for Base64BinaryDt
impl<'de> Deserialize<'de> for Base64BinaryDt
fn deserialize<De>(deserializer: De) -> Result<Self>where
De: Deserializer<'de>,
source§impl Element for Base64BinaryDt
impl Element for Base64BinaryDt
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 From<&str> for Base64BinaryDt
impl From<&str> for Base64BinaryDt
source§impl FromStr for Base64BinaryDt
impl FromStr for Base64BinaryDt
source§impl Primitive for Base64BinaryDt
impl Primitive for Base64BinaryDt
source§impl Serialize for Base64BinaryDt
impl Serialize for Base64BinaryDt
Auto Trait Implementations§
impl RefUnwindSafe for Base64BinaryDt
impl Send for Base64BinaryDt
impl Sync for Base64BinaryDt
impl Unpin for Base64BinaryDt
impl UnwindSafe for Base64BinaryDt
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