pub enum AssertionDirectionType {
Request,
Response,
}Expand description
AssertionDirectionType. The type of direction to use for assertion.
FHIR version: 5.0.0.
Variants§
Request
request
request. The assertion is evaluated on the request.
Response
response
response. The assertion is evaluated on the response. This is the default value.
Trait Implementations§
Source§impl AsRef<str> for AssertionDirectionType
impl AsRef<str> for AssertionDirectionType
Source§impl Clone for AssertionDirectionType
impl Clone for AssertionDirectionType
Source§fn clone(&self) -> AssertionDirectionType
fn clone(&self) -> AssertionDirectionType
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 AssertionDirectionType
impl Debug for AssertionDirectionType
Source§impl<'de> Deserialize<'de> for AssertionDirectionType
impl<'de> Deserialize<'de> for AssertionDirectionType
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for AssertionDirectionType
impl Display for AssertionDirectionType
Source§impl From<AssertionDirectionType> for CodeableConcept
impl From<AssertionDirectionType> for CodeableConcept
Source§fn from(code: AssertionDirectionType) -> Self
fn from(code: AssertionDirectionType) -> Self
Converts to this type from the input type.
Source§impl From<AssertionDirectionType> for Coding
impl From<AssertionDirectionType> for Coding
Source§fn from(code: AssertionDirectionType) -> Self
fn from(code: AssertionDirectionType) -> Self
Converts to this type from the input type.
Source§impl FromStr for AssertionDirectionType
impl FromStr for AssertionDirectionType
Source§impl Hash for AssertionDirectionType
impl Hash for AssertionDirectionType
Source§impl PartialEq for AssertionDirectionType
impl PartialEq for AssertionDirectionType
Source§fn eq(&self, other: &AssertionDirectionType) -> bool
fn eq(&self, other: &AssertionDirectionType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AssertionDirectionType
impl Serialize for AssertionDirectionType
impl Copy for AssertionDirectionType
impl Eq for AssertionDirectionType
impl StructuralPartialEq for AssertionDirectionType
Auto Trait Implementations§
impl Freeze for AssertionDirectionType
impl RefUnwindSafe for AssertionDirectionType
impl Send for AssertionDirectionType
impl Sync for AssertionDirectionType
impl Unpin for AssertionDirectionType
impl UnsafeUnpin for AssertionDirectionType
impl UnwindSafe for AssertionDirectionType
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