pub struct UpdateUserResponse {Show 13 fields
pub username: String,
pub name: String,
pub user_id: String,
pub kind: String,
pub credential_uuid: String,
pub org_id: Option<String>,
pub tenant_id: Option<String>,
pub permissions: Option<Vec<String>>,
pub is_active: bool,
pub is_service_account: bool,
pub is_registered: bool,
pub is_ssorequired: bool,
pub permission_assignments: Vec<Value>,
}Expand description
Update User
Fields§
§username: String§name: String§user_id: String§kind: String§credential_uuid: String§org_id: Option<String>§tenant_id: Option<String>§permissions: Option<Vec<String>>§is_active: bool§is_service_account: bool§is_registered: bool§is_ssorequired: bool§permission_assignments: Vec<Value>Trait Implementations§
Source§impl Clone for UpdateUserResponse
impl Clone for UpdateUserResponse
Source§fn clone(&self) -> UpdateUserResponse
fn clone(&self) -> UpdateUserResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UpdateUserResponse
impl Debug for UpdateUserResponse
Source§impl<'de> Deserialize<'de> for UpdateUserResponse
impl<'de> Deserialize<'de> for UpdateUserResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for UpdateUserResponse
impl RefUnwindSafe for UpdateUserResponse
impl Send for UpdateUserResponse
impl Sync for UpdateUserResponse
impl Unpin for UpdateUserResponse
impl UnsafeUnpin for UpdateUserResponse
impl UnwindSafe for UpdateUserResponse
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