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