pub struct OIDCAddress {
pub formatted: String,
pub street_address: String,
pub locality: String,
pub region: String,
pub postal_code: String,
pub country: String,
}Fields§
§formatted: String§street_address: String§locality: String§region: String§postal_code: String§country: StringTrait Implementations§
Source§impl Clone for OIDCAddress
impl Clone for OIDCAddress
Source§fn clone(&self) -> OIDCAddress
fn clone(&self) -> OIDCAddress
Returns a copy 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 OIDCAddress
impl Debug for OIDCAddress
Source§impl Default for OIDCAddress
impl Default for OIDCAddress
Source§fn default() -> OIDCAddress
fn default() -> OIDCAddress
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OIDCAddresswhere
OIDCAddress: Default,
impl<'de> Deserialize<'de> for OIDCAddresswhere
OIDCAddress: Default,
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
Auto Trait Implementations§
impl Freeze for OIDCAddress
impl RefUnwindSafe for OIDCAddress
impl Send for OIDCAddress
impl Sync for OIDCAddress
impl Unpin for OIDCAddress
impl UnwindSafe for OIDCAddress
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