pub struct BulkUpdateRoleParams {
pub account_id: String,
pub user_email: String,
pub new_role_id: String,
pub from_role_id: Option<String>,
}Expand description
Parameters for bulk update role operation
Fields§
§account_id: StringAccount ID
user_email: StringUser email to update
new_role_id: StringNew role ID to assign
from_role_id: Option<String>Only update if user has this current role (optional filter)
Trait Implementations§
Source§impl Clone for BulkUpdateRoleParams
impl Clone for BulkUpdateRoleParams
Source§fn clone(&self) -> BulkUpdateRoleParams
fn clone(&self) -> BulkUpdateRoleParams
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 moreAuto Trait Implementations§
impl Freeze for BulkUpdateRoleParams
impl RefUnwindSafe for BulkUpdateRoleParams
impl Send for BulkUpdateRoleParams
impl Sync for BulkUpdateRoleParams
impl Unpin for BulkUpdateRoleParams
impl UnsafeUnpin for BulkUpdateRoleParams
impl UnwindSafe for BulkUpdateRoleParams
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