pub struct Group {
pub object: String,
pub id: String,
pub name: String,
pub created_at: u64,
pub scim_managed: bool,
}Available on crate feature
administration-types only.Expand description
Summary information about a group returned in role assignment responses.
Fields§
§object: StringThe object type, which is always group.
id: StringIdentifier for the group.
name: StringDisplay name of the group.
created_at: u64Unix timestamp (in seconds) when the group was created.
scim_managed: boolWhether the group is managed through SCIM.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Group
impl<'de> Deserialize<'de> for Group
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
impl StructuralPartialEq for Group
Auto Trait Implementations§
impl Freeze for Group
impl RefUnwindSafe for Group
impl Send for Group
impl Sync for Group
impl Unpin for Group
impl UnwindSafe for Group
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