pub struct AltIdentifier {
pub scheme: String,
pub code: String,
pub term: Option<String>,
}Expand description
altidentifier: a code from another scheme (LOINC#54486-6).
Fields§
§scheme: StringThe scheme alias before the #.
code: StringThe code after the #.
term: Option<String>The term between pipes, trimmed.
Trait Implementations§
Source§impl Clone for AltIdentifier
impl Clone for AltIdentifier
Source§fn clone(&self) -> AltIdentifier
fn clone(&self) -> AltIdentifier
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AltIdentifier
impl Debug for AltIdentifier
Source§impl Display for AltIdentifier
impl Display for AltIdentifier
impl Eq for AltIdentifier
Source§impl Hash for AltIdentifier
impl Hash for AltIdentifier
Source§impl PartialEq for AltIdentifier
impl PartialEq for AltIdentifier
impl StructuralPartialEq for AltIdentifier
Auto Trait Implementations§
impl Freeze for AltIdentifier
impl RefUnwindSafe for AltIdentifier
impl Send for AltIdentifier
impl Sync for AltIdentifier
impl Unpin for AltIdentifier
impl UnsafeUnpin for AltIdentifier
impl UnwindSafe for AltIdentifier
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