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