pub struct ScimGroupResource {
pub display_name: Option<String>,
pub external_id: Option<String>,
pub id: Option<String>,
pub members: Option<ScimGroupResourceMembers>,
pub meta: Option<ScimGroupResourceMeta>,
pub schemas: Option<Vec<String>>,
}
Fields§
§display_name: Option<String>
The group’s display name.
external_id: Option<String>
The group’s external ID.
id: Option<String>
The group’s SCIM ID.
members: Option<ScimGroupResourceMembers>
Information about the group’s members.
meta: Option<ScimGroupResourceMeta>
The response’s non-standard meta information.
schemas: Option<Vec<String>>
A list of schema resource URIs.
Trait Implementations§
Source§impl Clone for ScimGroupResource
impl Clone for ScimGroupResource
Source§fn clone(&self) -> ScimGroupResource
fn clone(&self) -> ScimGroupResource
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 Debug for ScimGroupResource
impl Debug for ScimGroupResource
Source§impl<'de> Deserialize<'de> for ScimGroupResource
impl<'de> Deserialize<'de> for ScimGroupResource
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 ScimGroupResource
impl PartialEq for ScimGroupResource
Source§impl Serialize for ScimGroupResource
impl Serialize for ScimGroupResource
impl StructuralPartialEq for ScimGroupResource
Auto Trait Implementations§
impl Freeze for ScimGroupResource
impl RefUnwindSafe for ScimGroupResource
impl Send for ScimGroupResource
impl Sync for ScimGroupResource
impl Unpin for ScimGroupResource
impl UnwindSafe for ScimGroupResource
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