pub struct DeactivateUserResponse {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
Deactivate 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 DeactivateUserResponse
impl Clone for DeactivateUserResponse
Source§fn clone(&self) -> DeactivateUserResponse
fn clone(&self) -> DeactivateUserResponse
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 DeactivateUserResponse
impl Debug for DeactivateUserResponse
Source§impl<'de> Deserialize<'de> for DeactivateUserResponse
impl<'de> Deserialize<'de> for DeactivateUserResponse
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 DeactivateUserResponse
impl RefUnwindSafe for DeactivateUserResponse
impl Send for DeactivateUserResponse
impl Sync for DeactivateUserResponse
impl Unpin for DeactivateUserResponse
impl UnsafeUnpin for DeactivateUserResponse
impl UnwindSafe for DeactivateUserResponse
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