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