pub enum TestReportParticipantType {
Client,
Server,
TestEngine,
}Expand description
TestReportParticipantType. The type of participant.
FHIR version: 5.0.0.
Variants§
Client
client
Client. A FHIR Client.
Server
server
Server. A FHIR Server.
TestEngine
test-engine
Test Engine. The test execution engine.
Trait Implementations§
Source§impl AsRef<str> for TestReportParticipantType
impl AsRef<str> for TestReportParticipantType
Source§impl Clone for TestReportParticipantType
impl Clone for TestReportParticipantType
Source§fn clone(&self) -> TestReportParticipantType
fn clone(&self) -> TestReportParticipantType
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 TestReportParticipantType
impl Debug for TestReportParticipantType
Source§impl<'de> Deserialize<'de> for TestReportParticipantType
impl<'de> Deserialize<'de> for TestReportParticipantType
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 TestReportParticipantType
impl Display for TestReportParticipantType
Source§impl From<TestReportParticipantType> for CodeableConcept
impl From<TestReportParticipantType> for CodeableConcept
Source§fn from(code: TestReportParticipantType) -> Self
fn from(code: TestReportParticipantType) -> Self
Converts to this type from the input type.
Source§impl From<TestReportParticipantType> for Coding
impl From<TestReportParticipantType> for Coding
Source§fn from(code: TestReportParticipantType) -> Self
fn from(code: TestReportParticipantType) -> Self
Converts to this type from the input type.
Source§impl FromStr for TestReportParticipantType
impl FromStr for TestReportParticipantType
Source§impl Hash for TestReportParticipantType
impl Hash for TestReportParticipantType
Source§impl PartialEq for TestReportParticipantType
impl PartialEq for TestReportParticipantType
Source§fn eq(&self, other: &TestReportParticipantType) -> bool
fn eq(&self, other: &TestReportParticipantType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TestReportParticipantType
impl Eq for TestReportParticipantType
impl StructuralPartialEq for TestReportParticipantType
Auto Trait Implementations§
impl Freeze for TestReportParticipantType
impl RefUnwindSafe for TestReportParticipantType
impl Send for TestReportParticipantType
impl Sync for TestReportParticipantType
impl Unpin for TestReportParticipantType
impl UnsafeUnpin for TestReportParticipantType
impl UnwindSafe for TestReportParticipantType
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