pub struct RemoveUserGroupMembersParams {
pub user_group_id: String,
pub request_body: Option<HashMap<String, Value>>,
}
Expand description
struct for passing parameters to the method remove_user_group_members
Fields§
§user_group_id: String
Alphanumeric string identifying the user group.
request_body: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Clone for RemoveUserGroupMembersParams
impl Clone for RemoveUserGroupMembersParams
Source§fn clone(&self) -> RemoveUserGroupMembersParams
fn clone(&self) -> RemoveUserGroupMembersParams
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 RemoveUserGroupMembersParams
impl Debug for RemoveUserGroupMembersParams
Source§impl Default for RemoveUserGroupMembersParams
impl Default for RemoveUserGroupMembersParams
Source§fn default() -> RemoveUserGroupMembersParams
fn default() -> RemoveUserGroupMembersParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RemoveUserGroupMembersParams
impl RefUnwindSafe for RemoveUserGroupMembersParams
impl Send for RemoveUserGroupMembersParams
impl Sync for RemoveUserGroupMembersParams
impl Unpin for RemoveUserGroupMembersParams
impl UnwindSafe for RemoveUserGroupMembersParams
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