pub enum CodeSystemVersionAlgorithm {
String(String),
Coding(Box<Coding>),
Invalid,
}Expand description
Indicates the mechanism used to compare versions to determine which CodeSystem is more current.
Variants§
Trait Implementations§
Source§impl Clone for CodeSystemVersionAlgorithm
impl Clone for CodeSystemVersionAlgorithm
Source§fn clone(&self) -> CodeSystemVersionAlgorithm
fn clone(&self) -> CodeSystemVersionAlgorithm
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CodeSystemVersionAlgorithm
impl Debug for CodeSystemVersionAlgorithm
Source§impl Default for CodeSystemVersionAlgorithm
impl Default for CodeSystemVersionAlgorithm
Source§fn default() -> CodeSystemVersionAlgorithm
fn default() -> CodeSystemVersionAlgorithm
Returns the “default value” for a type. Read more
Source§impl PartialEq for CodeSystemVersionAlgorithm
impl PartialEq for CodeSystemVersionAlgorithm
Source§fn eq(&self, other: &CodeSystemVersionAlgorithm) -> bool
fn eq(&self, other: &CodeSystemVersionAlgorithm) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CodeSystemVersionAlgorithm
Auto Trait Implementations§
impl Freeze for CodeSystemVersionAlgorithm
impl RefUnwindSafe for CodeSystemVersionAlgorithm
impl Send for CodeSystemVersionAlgorithm
impl Sync for CodeSystemVersionAlgorithm
impl Unpin for CodeSystemVersionAlgorithm
impl UnwindSafe for CodeSystemVersionAlgorithm
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