pub struct ScimListResponse<T> {
pub schemas: Vec<String>,
pub total_results: usize,
pub resources: Vec<T>,
}Expand description
SCIM list response (RFC 7644 §3.4.2).
Fields§
§schemas: Vec<String>§total_results: usize§resources: Vec<T>Implementations§
Trait Implementations§
Source§impl<T: Clone> Clone for ScimListResponse<T>
impl<T: Clone> Clone for ScimListResponse<T>
Source§fn clone(&self) -> ScimListResponse<T>
fn clone(&self) -> ScimListResponse<T>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<T: Debug> Debug for ScimListResponse<T>
impl<T: Debug> Debug for ScimListResponse<T>
Auto Trait Implementations§
impl<T> Freeze for ScimListResponse<T>
impl<T> RefUnwindSafe for ScimListResponse<T>where
T: RefUnwindSafe,
impl<T> Send for ScimListResponse<T>where
T: Send,
impl<T> Sync for ScimListResponse<T>where
T: Sync,
impl<T> Unpin for ScimListResponse<T>where
T: Unpin,
impl<T> UnsafeUnpin for ScimListResponse<T>
impl<T> UnwindSafe for ScimListResponse<T>where
T: UnwindSafe,
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