pub struct UpdateTenantUserParams {
pub tenant_id: String,
pub id: String,
pub update_tenant_user_body: UpdateTenantUserBody,
pub update_comments: Option<String>,
}Expand description
struct for passing parameters to the method update_tenant_user
Fields§
§tenant_id: String§id: String§update_tenant_user_body: UpdateTenantUserBody§update_comments: Option<String>Trait Implementations§
Source§impl Clone for UpdateTenantUserParams
impl Clone for UpdateTenantUserParams
Source§fn clone(&self) -> UpdateTenantUserParams
fn clone(&self) -> UpdateTenantUserParams
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 UpdateTenantUserParams
impl RefUnwindSafe for UpdateTenantUserParams
impl Send for UpdateTenantUserParams
impl Sync for UpdateTenantUserParams
impl Unpin for UpdateTenantUserParams
impl UnwindSafe for UpdateTenantUserParams
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