pub struct ScimUserAddress {
pub country: String,
pub formatted: String,
pub locality: String,
pub postal_code: String,
pub primary: bool,
pub region: String,
pub street_address: String,
pub type: String,
}Expand description
ScimUserAddress from the ClickHouse Cloud API.
Fields§
§country: String§formatted: String§locality: String§postal_code: String§primary: bool§region: String§street_address: String§type: StringTrait Implementations§
Source§impl Clone for ScimUserAddress
impl Clone for ScimUserAddress
Source§fn clone(&self) -> ScimUserAddress
fn clone(&self) -> ScimUserAddress
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 ScimUserAddress
impl Debug for ScimUserAddress
Source§impl Default for ScimUserAddress
impl Default for ScimUserAddress
Source§fn default() -> ScimUserAddress
fn default() -> ScimUserAddress
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScimUserAddress
impl<'de> Deserialize<'de> for ScimUserAddress
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 ScimUserAddress
impl PartialEq for ScimUserAddress
Source§fn eq(&self, other: &ScimUserAddress) -> bool
fn eq(&self, other: &ScimUserAddress) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ScimUserAddress
impl Serialize for ScimUserAddress
impl StructuralPartialEq for ScimUserAddress
Auto Trait Implementations§
impl Freeze for ScimUserAddress
impl RefUnwindSafe for ScimUserAddress
impl Send for ScimUserAddress
impl Sync for ScimUserAddress
impl Unpin for ScimUserAddress
impl UnsafeUnpin for ScimUserAddress
impl UnwindSafe for ScimUserAddress
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