pub enum AddressType {
Both,
Physical,
Postal,
}Expand description
AddressType. The type of an address (physical / postal).
FHIR version: 5.0.0.
Variants§
Both
both
Postal & Physical. An address that is both physical and postal.
Physical
physical
Physical. A physical address that can be visited.
Postal
postal
Postal. Mailing addresses - PO Boxes and care-of addresses.
Trait Implementations§
Source§impl AsRef<str> for AddressType
impl AsRef<str> for AddressType
Source§impl Clone for AddressType
impl Clone for AddressType
Source§fn clone(&self) -> AddressType
fn clone(&self) -> AddressType
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 AddressType
impl Debug for AddressType
Source§impl<'de> Deserialize<'de> for AddressType
impl<'de> Deserialize<'de> for AddressType
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 AddressType
impl Display for AddressType
Source§impl From<AddressType> for CodeableConcept
impl From<AddressType> for CodeableConcept
Source§fn from(code: AddressType) -> Self
fn from(code: AddressType) -> Self
Converts to this type from the input type.
Source§impl From<AddressType> for Coding
impl From<AddressType> for Coding
Source§fn from(code: AddressType) -> Self
fn from(code: AddressType) -> Self
Converts to this type from the input type.
Source§impl FromStr for AddressType
impl FromStr for AddressType
Source§impl Hash for AddressType
impl Hash for AddressType
Source§impl PartialEq for AddressType
impl PartialEq for AddressType
Source§fn eq(&self, other: &AddressType) -> bool
fn eq(&self, other: &AddressType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AddressType
impl Serialize for AddressType
impl Copy for AddressType
impl Eq for AddressType
impl StructuralPartialEq for AddressType
Auto Trait Implementations§
impl Freeze for AddressType
impl RefUnwindSafe for AddressType
impl Send for AddressType
impl Sync for AddressType
impl Unpin for AddressType
impl UnsafeUnpin for AddressType
impl UnwindSafe for AddressType
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