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