pub struct AccessKeyInfo {
pub access_key: String,
pub user_type: String,
pub user_provider: String,
pub info: AccessKeyDetails,
pub ldap_specific_info: LdapAccessKeyInfo,
pub open_id_specific_info: OpenIdAccessKeyInfo,
}Expand description
General access key information returned by the RustFS Admin API.
Fields§
§access_key: String§user_type: String§user_provider: String§info: AccessKeyDetails§ldap_specific_info: LdapAccessKeyInfo§open_id_specific_info: OpenIdAccessKeyInfoTrait Implementations§
Source§impl Clone for AccessKeyInfo
impl Clone for AccessKeyInfo
Source§fn clone(&self) -> AccessKeyInfo
fn clone(&self) -> AccessKeyInfo
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 AccessKeyInfo
impl Debug for AccessKeyInfo
Source§impl<'de> Deserialize<'de> for AccessKeyInfo
impl<'de> Deserialize<'de> for AccessKeyInfo
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
impl Eq for AccessKeyInfo
Source§impl PartialEq for AccessKeyInfo
impl PartialEq for AccessKeyInfo
Source§fn eq(&self, other: &AccessKeyInfo) -> bool
fn eq(&self, other: &AccessKeyInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AccessKeyInfo
impl Serialize for AccessKeyInfo
impl StructuralPartialEq for AccessKeyInfo
Auto Trait Implementations§
impl Freeze for AccessKeyInfo
impl RefUnwindSafe for AccessKeyInfo
impl Send for AccessKeyInfo
impl Sync for AccessKeyInfo
impl Unpin for AccessKeyInfo
impl UnsafeUnpin for AccessKeyInfo
impl UnwindSafe for AccessKeyInfo
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