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