pub struct UserGroupResponse {
pub id: Option<String>,
pub name: Option<String>,
pub status: Option<Status>,
pub member_ids: Option<Vec<String>>,
}
Fields§
§id: Option<String>
User Group ID
name: Option<String>
User Group Name
status: Option<Status>
Group Approval Status
member_ids: Option<Vec<String>>
Implementations§
Source§impl UserGroupResponse
impl UserGroupResponse
pub fn new() -> UserGroupResponse
Trait Implementations§
Source§impl Clone for UserGroupResponse
impl Clone for UserGroupResponse
Source§fn clone(&self) -> UserGroupResponse
fn clone(&self) -> UserGroupResponse
Returns a copy 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 UserGroupResponse
impl Debug for UserGroupResponse
Source§impl Default for UserGroupResponse
impl Default for UserGroupResponse
Source§fn default() -> UserGroupResponse
fn default() -> UserGroupResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserGroupResponse
impl<'de> Deserialize<'de> for UserGroupResponse
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 UserGroupResponse
impl PartialEq for UserGroupResponse
Source§impl Serialize for UserGroupResponse
impl Serialize for UserGroupResponse
impl StructuralPartialEq for UserGroupResponse
Auto Trait Implementations§
impl Freeze for UserGroupResponse
impl RefUnwindSafe for UserGroupResponse
impl Send for UserGroupResponse
impl Sync for UserGroupResponse
impl Unpin for UserGroupResponse
impl UnwindSafe for UserGroupResponse
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