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