pub struct Group {
pub id: u64,
pub name: String,
pub source_id: Option<String>,
pub capabilities: Value,
pub is_deleted: bool,
pub deleted_time: Option<i64>,
pub metadata: Option<HashMap<String, String>>,
}Expand description
A CDF group.
Fields§
§id: u64Internal ID.
name: StringHuman readable name.
source_id: Option<String>ID of the group in the source IdP.
capabilities: ValueGroup capabilities object.
is_deleted: boolWhether this group is deleted.
deleted_time: Option<i64>Time this group was deleted.
metadata: Option<HashMap<String, String>>Custom, immutable application specific metadata. String key -> String value. Limits: Key are at most 32 bytes. Values are at most 512 bytes. Up to 16 key-value pairs. Total size is at most 4096.
Trait Implementations§
Source§impl Create<AddGroup, Group> for GroupsResource
impl Create<AddGroup, Group> for GroupsResource
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
Source§impl List<GroupQuery, Group> for GroupsResource
impl List<GroupQuery, Group> for GroupsResource
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