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