pub enum TestScriptScopeConformanceType {
Optional,
Required,
Strict,
}Expand description
TestScriptScopeConformanceType. The expectation of whether the test must pass for the system to be considered conformant with the artifact.
FHIR version: 5.0.0.
Variants§
Optional
optional
Optional. All tests are expected to pass but non-pass statuses may be allowed.
Required
required
Required. All tests are expected to pass. Warning statuses are permitted. This is the default value.
Strict
strict
Strict. All tests are expected to pass. Warnings are treated as a failure.
Trait Implementations§
Source§impl AsRef<str> for TestScriptScopeConformanceType
impl AsRef<str> for TestScriptScopeConformanceType
Source§impl Clone for TestScriptScopeConformanceType
impl Clone for TestScriptScopeConformanceType
Source§fn clone(&self) -> TestScriptScopeConformanceType
fn clone(&self) -> TestScriptScopeConformanceType
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<'de> Deserialize<'de> for TestScriptScopeConformanceType
impl<'de> Deserialize<'de> for TestScriptScopeConformanceType
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 From<TestScriptScopeConformanceType> for CodeableConcept
impl From<TestScriptScopeConformanceType> for CodeableConcept
Source§fn from(code: TestScriptScopeConformanceType) -> Self
fn from(code: TestScriptScopeConformanceType) -> Self
Converts to this type from the input type.
Source§impl From<TestScriptScopeConformanceType> for Coding
impl From<TestScriptScopeConformanceType> for Coding
Source§fn from(code: TestScriptScopeConformanceType) -> Self
fn from(code: TestScriptScopeConformanceType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TestScriptScopeConformanceType
impl PartialEq for TestScriptScopeConformanceType
Source§fn eq(&self, other: &TestScriptScopeConformanceType) -> bool
fn eq(&self, other: &TestScriptScopeConformanceType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TestScriptScopeConformanceType
impl Eq for TestScriptScopeConformanceType
impl StructuralPartialEq for TestScriptScopeConformanceType
Auto Trait Implementations§
impl Freeze for TestScriptScopeConformanceType
impl RefUnwindSafe for TestScriptScopeConformanceType
impl Send for TestScriptScopeConformanceType
impl Sync for TestScriptScopeConformanceType
impl Unpin for TestScriptScopeConformanceType
impl UnsafeUnpin for TestScriptScopeConformanceType
impl UnwindSafe for TestScriptScopeConformanceType
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