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