pub struct IamUser {Show 14 fields
pub user_name: String,
pub path: String,
pub groups: String,
pub last_activity: String,
pub mfa: String,
pub password_age: String,
pub console_last_sign_in: String,
pub access_key_id: String,
pub active_key_age: String,
pub access_key_last_used: String,
pub arn: String,
pub creation_time: String,
pub console_access: String,
pub signing_certs: String,
}Fields§
§user_name: String§path: String§groups: String§last_activity: String§mfa: String§password_age: String§console_last_sign_in: String§access_key_id: String§active_key_age: String§access_key_last_used: String§arn: String§creation_time: String§console_access: String§signing_certs: StringTrait Implementations§
Source§impl<'a> Column<&'a IamUser> for UserColumn
impl<'a> Column<&'a IamUser> for UserColumn
Source§impl<'de> Deserialize<'de> for IamUser
impl<'de> Deserialize<'de> for IamUser
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 IamUser
impl RefUnwindSafe for IamUser
impl Send for IamUser
impl Sync for IamUser
impl Unpin for IamUser
impl UnsafeUnpin for IamUser
impl UnwindSafe for IamUser
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.