Enum ExtensionValue

Source
pub enum ExtensionValue {
Show 54 variants Base64Binary(Base64Binary), Boolean(bool), Canonical(String), Code(String), Date(Date), DateTime(DateTime), Decimal(f64), Id(String), Instant(Instant), Integer(i32), Integer64(Integer64), Markdown(String), Oid(String), PositiveInt(NonZero<u32>), String(String), Time(Time), UnsignedInt(u32), Uri(String), Url(String), Uuid(String), Address(Address), Age(Age), Annotation(Annotation), Attachment(Attachment), CodeableConcept(CodeableConcept), CodeableReference(CodeableReference), Coding(Coding), ContactPoint(ContactPoint), Count(Count), Distance(Distance), Duration(Duration), HumanName(HumanName), Identifier(Identifier), Money(Money), Period(Period), Quantity(Quantity), Range(Range), Ratio(Ratio), RatioRange(RatioRange), Reference(Reference), SampledData(SampledData), Signature(Signature), Timing(Timing), ContactDetail(ContactDetail), DataRequirement(DataRequirement), Expression(Expression), ParameterDefinition(ParameterDefinition), RelatedArtifact(RelatedArtifact), TriggerDefinition(TriggerDefinition), UsageContext(UsageContext), Availability(Availability), ExtendedContactDetail(ExtendedContactDetail), Dosage(Dosage), Meta(Meta),
}
Expand description

Choice of types for the value[x] field in Extension

Variants§

§

Base64Binary(Base64Binary)

Variant accepting the Base64Binary type.

§

Boolean(bool)

Variant accepting the Boolean type.

§

Canonical(String)

Variant accepting the Canonical type.

§

Code(String)

Variant accepting the Code type.

§

Date(Date)

Variant accepting the Date type.

§

DateTime(DateTime)

Variant accepting the DateTime type.

§

Decimal(f64)

Variant accepting the Decimal type.

§

Id(String)

Variant accepting the Id type.

§

Instant(Instant)

Variant accepting the Instant type.

§

Integer(i32)

Variant accepting the Integer type.

§

Integer64(Integer64)

Variant accepting the Integer64 type.

§

Markdown(String)

Variant accepting the Markdown type.

§

Oid(String)

Variant accepting the Oid type.

§

PositiveInt(NonZero<u32>)

Variant accepting the PositiveInt type.

§

String(String)

Variant accepting the String type.

§

Time(Time)

Variant accepting the Time type.

§

UnsignedInt(u32)

Variant accepting the UnsignedInt type.

§

Uri(String)

Variant accepting the Uri type.

§

Url(String)

Variant accepting the Url type.

§

Uuid(String)

Variant accepting the Uuid type.

§

Address(Address)

Variant accepting the Address type.

§

Age(Age)

Variant accepting the Age type.

§

Annotation(Annotation)

Variant accepting the Annotation type.

§

Attachment(Attachment)

Variant accepting the Attachment type.

§

CodeableConcept(CodeableConcept)

Variant accepting the CodeableConcept type.

§

CodeableReference(CodeableReference)

Variant accepting the CodeableReference type.

§

Coding(Coding)

Variant accepting the Coding type.

§

ContactPoint(ContactPoint)

Variant accepting the ContactPoint type.

§

Count(Count)

Variant accepting the Count type.

§

Distance(Distance)

Variant accepting the Distance type.

§

Duration(Duration)

Variant accepting the Duration type.

§

HumanName(HumanName)

Variant accepting the HumanName type.

§

Identifier(Identifier)

Variant accepting the Identifier type.

§

Money(Money)

Variant accepting the Money type.

§

Period(Period)

Variant accepting the Period type.

§

Quantity(Quantity)

Variant accepting the Quantity type.

§

Range(Range)

Variant accepting the Range type.

§

Ratio(Ratio)

Variant accepting the Ratio type.

§

RatioRange(RatioRange)

Variant accepting the RatioRange type.

§

Reference(Reference)

Variant accepting the Reference type.

§

SampledData(SampledData)

Variant accepting the SampledData type.

§

Signature(Signature)

Variant accepting the Signature type.

§

Timing(Timing)

Variant accepting the Timing type.

§

ContactDetail(ContactDetail)

Variant accepting the ContactDetail type.

§

DataRequirement(DataRequirement)

Variant accepting the DataRequirement type.

§

Expression(Expression)

Variant accepting the Expression type.

§

ParameterDefinition(ParameterDefinition)

Variant accepting the ParameterDefinition type.

§

RelatedArtifact(RelatedArtifact)

Variant accepting the RelatedArtifact type.

§

TriggerDefinition(TriggerDefinition)

Variant accepting the TriggerDefinition type.

§

UsageContext(UsageContext)

Variant accepting the UsageContext type.

§

Availability(Availability)

Variant accepting the Availability type.

§

ExtendedContactDetail(ExtendedContactDetail)

Variant accepting the ExtendedContactDetail type.

§

Dosage(Dosage)

Variant accepting the Dosage type.

§

Meta(Meta)

Variant accepting the Meta type.

Trait Implementations§

Source§

impl Clone for ExtensionValue

Source§

fn clone(&self) -> ExtensionValue

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ExtensionValue

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for ExtensionValue

Source§

fn deserialize<__D>( __deserializer: __D, ) -> Result<ExtensionValue, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl PartialEq for ExtensionValue

Source§

fn eq(&self, other: &ExtensionValue) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for ExtensionValue

Source§

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
Source§

impl StructuralPartialEq for ExtensionValue

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,