pub struct AccessKeyInfoView {
pub public_key: PublicKey,
pub access_key: AccessKeyDetails,
}Expand description
Single access key info in list.
Fields§
§public_key: PublicKeyPublic key.
access_key: AccessKeyDetailsAccess key details.
Trait Implementations§
Source§impl Clone for AccessKeyInfoView
impl Clone for AccessKeyInfoView
Source§fn clone(&self) -> AccessKeyInfoView
fn clone(&self) -> AccessKeyInfoView
Returns a duplicate of the value. Read more
1.0.0 · 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 AccessKeyInfoView
impl Debug for AccessKeyInfoView
Source§impl<'de> Deserialize<'de> for AccessKeyInfoView
impl<'de> Deserialize<'de> for AccessKeyInfoView
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 AccessKeyInfoView
impl RefUnwindSafe for AccessKeyInfoView
impl Send for AccessKeyInfoView
impl Sync for AccessKeyInfoView
impl Unpin for AccessKeyInfoView
impl UnsafeUnpin for AccessKeyInfoView
impl UnwindSafe for AccessKeyInfoView
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