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