pub enum Outcome {
Equivalent,
Subsumes,
SubsumedBy,
NotSubsumed,
}Expand description
The outcome of testing whether A subsumes B (https://hl7.org/fhir/R4B/codesystem-concept-subsumption-outcome.html).
Variants§
Equivalent
A and B are the same concept.
Subsumes
A is an ancestor of B.
SubsumedBy
A is a descendant of B.
NotSubsumed
Neither is an ancestor of the other.
Implementations§
Trait Implementations§
impl Copy for Outcome
impl Eq for Outcome
impl StructuralPartialEq for Outcome
Auto Trait Implementations§
impl Freeze for Outcome
impl RefUnwindSafe for Outcome
impl Send for Outcome
impl Sync for Outcome
impl Unpin for Outcome
impl UnsafeUnpin for Outcome
impl UnwindSafe for Outcome
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