pub struct IamUserGroupAllOf {
pub id: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub invitations_count: Option<i32>,
pub users_count: Option<i32>,
pub roles_count: Option<i32>,
}
Fields§
§id: Option<String>
Alphanumeric string identifying the user group.
name: Option<String>
Name of the user group.
description: Option<String>
Description of the user group.
invitations_count: Option<i32>
Number of invitations added to the user group.
users_count: Option<i32>
Number of users added to the user group.
roles_count: Option<i32>
Number of roles added to the user group.
Implementations§
Source§impl IamUserGroupAllOf
impl IamUserGroupAllOf
pub fn new() -> IamUserGroupAllOf
Trait Implementations§
Source§impl Clone for IamUserGroupAllOf
impl Clone for IamUserGroupAllOf
Source§fn clone(&self) -> IamUserGroupAllOf
fn clone(&self) -> IamUserGroupAllOf
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 IamUserGroupAllOf
impl Debug for IamUserGroupAllOf
Source§impl Default for IamUserGroupAllOf
impl Default for IamUserGroupAllOf
Source§fn default() -> IamUserGroupAllOf
fn default() -> IamUserGroupAllOf
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IamUserGroupAllOf
impl<'de> Deserialize<'de> for IamUserGroupAllOf
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 IamUserGroupAllOf
impl PartialEq for IamUserGroupAllOf
Source§impl Serialize for IamUserGroupAllOf
impl Serialize for IamUserGroupAllOf
impl StructuralPartialEq for IamUserGroupAllOf
Auto Trait Implementations§
impl Freeze for IamUserGroupAllOf
impl RefUnwindSafe for IamUserGroupAllOf
impl Send for IamUserGroupAllOf
impl Sync for IamUserGroupAllOf
impl Unpin for IamUserGroupAllOf
impl UnwindSafe for IamUserGroupAllOf
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