pub struct IdentificationParameterAddress {
pub name: Option<PersonName>,
pub address: Option<PostalAddress>,
}Expand description
Address-based identification parameters.
Fields§
§name: Option<PersonName>§address: Option<PostalAddress>Trait Implementations§
Source§impl Clone for IdentificationParameterAddress
impl Clone for IdentificationParameterAddress
Source§fn clone(&self) -> IdentificationParameterAddress
fn clone(&self) -> IdentificationParameterAddress
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 Default for IdentificationParameterAddress
impl Default for IdentificationParameterAddress
Source§fn default() -> IdentificationParameterAddress
fn default() -> IdentificationParameterAddress
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IdentificationParameterAddress
impl<'de> Deserialize<'de> for IdentificationParameterAddress
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 PartialEq for IdentificationParameterAddress
impl PartialEq for IdentificationParameterAddress
Source§fn eq(&self, other: &IdentificationParameterAddress) -> bool
fn eq(&self, other: &IdentificationParameterAddress) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IdentificationParameterAddress
Auto Trait Implementations§
impl Freeze for IdentificationParameterAddress
impl RefUnwindSafe for IdentificationParameterAddress
impl Send for IdentificationParameterAddress
impl Sync for IdentificationParameterAddress
impl Unpin for IdentificationParameterAddress
impl UnsafeUnpin for IdentificationParameterAddress
impl UnwindSafe for IdentificationParameterAddress
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