pub struct Designation {
pub id: Option<String>,
pub term: String,
pub language: String,
pub use_ordinal: u32,
pub active: bool,
}Expand description
A stored designation.
Fields§
§id: Option<String>The native identifier of the designation, when the code system has one.
term: StringThe text.
language: StringThe BCP 47 language.
use_ordinal: u32The designation use (a DESIGNATION_USES ordinal).
active: boolWhether the designation is active.
Implementations§
Source§impl Designation
impl Designation
Trait Implementations§
Source§impl Clone for Designation
impl Clone for Designation
Source§fn clone(&self) -> Designation
fn clone(&self) -> Designation
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 Designation
impl Debug for Designation
impl Eq for Designation
Source§impl PartialEq for Designation
impl PartialEq for Designation
impl StructuralPartialEq for Designation
Auto Trait Implementations§
impl Freeze for Designation
impl RefUnwindSafe for Designation
impl Send for Designation
impl Sync for Designation
impl Unpin for Designation
impl UnsafeUnpin for Designation
impl UnwindSafe for Designation
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