pub enum ActionPrecheckBehavior {
No,
Yes,
}Expand description
ActionPrecheckBehavior. Defines selection frequency behavior for an action or group.
FHIR version: 5.0.0.
Variants§
No
no
No. An action with this behavior is one of the less frequent actions included by the end user, for the particular context in which the action occurs. The system displaying the actions to the end user would typically not “pre-check” such an action.
Yes
yes
Yes. An action with this behavior is one of the most frequent action that is, or should be, included by an end user, for the particular context in which the action occurs. The system displaying the action to the end user should consider “pre-checking” such an action as a convenience for the user.
Trait Implementations§
Source§impl AsRef<str> for ActionPrecheckBehavior
impl AsRef<str> for ActionPrecheckBehavior
Source§impl Clone for ActionPrecheckBehavior
impl Clone for ActionPrecheckBehavior
Source§fn clone(&self) -> ActionPrecheckBehavior
fn clone(&self) -> ActionPrecheckBehavior
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 ActionPrecheckBehavior
impl Debug for ActionPrecheckBehavior
Source§impl<'de> Deserialize<'de> for ActionPrecheckBehavior
impl<'de> Deserialize<'de> for ActionPrecheckBehavior
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 ActionPrecheckBehavior
impl Display for ActionPrecheckBehavior
Source§impl From<ActionPrecheckBehavior> for CodeableConcept
impl From<ActionPrecheckBehavior> for CodeableConcept
Source§fn from(code: ActionPrecheckBehavior) -> Self
fn from(code: ActionPrecheckBehavior) -> Self
Converts to this type from the input type.
Source§impl From<ActionPrecheckBehavior> for Coding
impl From<ActionPrecheckBehavior> for Coding
Source§fn from(code: ActionPrecheckBehavior) -> Self
fn from(code: ActionPrecheckBehavior) -> Self
Converts to this type from the input type.
Source§impl FromStr for ActionPrecheckBehavior
impl FromStr for ActionPrecheckBehavior
Source§impl Hash for ActionPrecheckBehavior
impl Hash for ActionPrecheckBehavior
Source§impl PartialEq for ActionPrecheckBehavior
impl PartialEq for ActionPrecheckBehavior
Source§fn eq(&self, other: &ActionPrecheckBehavior) -> bool
fn eq(&self, other: &ActionPrecheckBehavior) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ActionPrecheckBehavior
impl Serialize for ActionPrecheckBehavior
impl Copy for ActionPrecheckBehavior
impl Eq for ActionPrecheckBehavior
impl StructuralPartialEq for ActionPrecheckBehavior
Auto Trait Implementations§
impl Freeze for ActionPrecheckBehavior
impl RefUnwindSafe for ActionPrecheckBehavior
impl Send for ActionPrecheckBehavior
impl Sync for ActionPrecheckBehavior
impl Unpin for ActionPrecheckBehavior
impl UnsafeUnpin for ActionPrecheckBehavior
impl UnwindSafe for ActionPrecheckBehavior
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