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