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