pub struct Input {
pub codeA: Option<FHIRCode>,
pub codeB: Option<FHIRCode>,
pub system: Option<FHIRUri>,
pub version: Option<FHIRString>,
pub codingA: Option<Coding>,
pub codingB: Option<Coding>,
}Fields§
§codeA: Option<FHIRCode>The “A” code that is to be tested. If a code is provided, a system must be provided
codeB: Option<FHIRCode>The “B” code that is to be tested. If a code is provided, a system must be provided
system: Option<FHIRUri>The code system in which subsumption testing is to be performed. This must be provided unless the operation is invoked on a code system instance
version: Option<FHIRString>The version of the code system, if one was provided in the source data
codingA: Option<Coding>The “A” Coding that is to be tested. The code system does not have to match the specified subsumption code system, but the relationships between the code systems must be well established
codingB: Option<Coding>The “B” Coding that is to be tested. The code system does not have to match the specified subsumption code system, but the relationships between the code systems must be well established
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Input
impl RefUnwindSafe for Input
impl Send for Input
impl Sync for Input
impl Unpin for Input
impl UnsafeUnpin for Input
impl UnwindSafe for Input
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
impl<T> ErasedDestructor for Twhere
T: 'static,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more