pub struct ScimAddress {
pub street_address: String,
pub locality: String,
pub region: String,
pub postal_code: String,
pub country: String,
}
Fields§
§street_address: String
§locality: String
§region: String
§postal_code: String
§country: String
Trait Implementations§
Source§impl Clone for ScimAddress
impl Clone for ScimAddress
Source§fn clone(&self) -> ScimAddress
fn clone(&self) -> ScimAddress
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 ScimAddress
impl Debug for ScimAddress
Source§impl<'de> Deserialize<'de> for ScimAddress
impl<'de> Deserialize<'de> for ScimAddress
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 ScimAddress
impl PartialEq for ScimAddress
Source§impl Serialize for ScimAddress
impl Serialize for ScimAddress
impl Eq for ScimAddress
impl StructuralPartialEq for ScimAddress
Auto Trait Implementations§
impl Freeze for ScimAddress
impl RefUnwindSafe for ScimAddress
impl Send for ScimAddress
impl Sync for ScimAddress
impl Unpin for ScimAddress
impl UnwindSafe for ScimAddress
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.