pub enum ConditionalReadStatus {
FullSupport,
ModifiedSince,
NotMatch,
NotSupported,
}
Expand description
ConditionalReadStatus. A code that indicates how the server supports conditional read.
FHIR version: 5.0.0.
Variants§
FullSupport
full-support
Full Support. Conditional reads are supported, with both If-Modified-Since and If-None-Match HTTP Headers.
ModifiedSince
modified-since
If-Modified-Since. Conditional reads are supported, but only with the If-Modified-Since HTTP Header.
NotMatch
not-match
If-None-Match. Conditional reads are supported, but only with the If-None-Match HTTP Header.
NotSupported
not-supported
Not Supported. No support for conditional reads.
Trait Implementations§
Source§impl AsRef<str> for ConditionalReadStatus
impl AsRef<str> for ConditionalReadStatus
Source§impl Clone for ConditionalReadStatus
impl Clone for ConditionalReadStatus
Source§fn clone(&self) -> ConditionalReadStatus
fn clone(&self) -> ConditionalReadStatus
Returns a duplicate of the value. Read more
1.0.0 · 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 ConditionalReadStatus
impl Debug for ConditionalReadStatus
Source§impl<'de> Deserialize<'de> for ConditionalReadStatus
impl<'de> Deserialize<'de> for ConditionalReadStatus
Source§fn deserialize<D>(
deserializer: D,
) -> Result<ConditionalReadStatus, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<ConditionalReadStatus, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for ConditionalReadStatus
impl Display for ConditionalReadStatus
Source§impl From<ConditionalReadStatus> for CodeableConcept
impl From<ConditionalReadStatus> for CodeableConcept
Source§fn from(code: ConditionalReadStatus) -> CodeableConcept
fn from(code: ConditionalReadStatus) -> CodeableConcept
Converts to this type from the input type.
Source§impl From<ConditionalReadStatus> for Coding
impl From<ConditionalReadStatus> for Coding
Source§fn from(code: ConditionalReadStatus) -> Coding
fn from(code: ConditionalReadStatus) -> Coding
Converts to this type from the input type.
Source§impl FromStr for ConditionalReadStatus
impl FromStr for ConditionalReadStatus
Source§impl Hash for ConditionalReadStatus
impl Hash for ConditionalReadStatus
Source§impl PartialEq for ConditionalReadStatus
impl PartialEq for ConditionalReadStatus
Source§impl Serialize for ConditionalReadStatus
impl Serialize for ConditionalReadStatus
Source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for ConditionalReadStatus
impl Eq for ConditionalReadStatus
impl StructuralPartialEq for ConditionalReadStatus
Auto Trait Implementations§
impl Freeze for ConditionalReadStatus
impl RefUnwindSafe for ConditionalReadStatus
impl Send for ConditionalReadStatus
impl Sync for ConditionalReadStatus
impl Unpin for ConditionalReadStatus
impl UnwindSafe for ConditionalReadStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.