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