pub struct AccessKeyResponse {
pub access_key: Option<String>,
pub secret_key: Option<String>,
pub description: Option<String>,
pub permission: Option<String>,
pub buckets: Option<Vec<String>>,
pub created_at: Option<String>,
}
Fields§
§access_key: Option<String>
Generated access key.
secret_key: Option<String>
Generated secret key.
description: Option<String>
Description for the access key.
permission: Option<String>
Permissions granted to an access key.
buckets: Option<Vec<String>>
§created_at: Option<String>
Date and time in ISO 8601 format.
Implementations§
Source§impl AccessKeyResponse
impl AccessKeyResponse
pub fn new() -> AccessKeyResponse
Trait Implementations§
Source§impl Clone for AccessKeyResponse
impl Clone for AccessKeyResponse
Source§fn clone(&self) -> AccessKeyResponse
fn clone(&self) -> AccessKeyResponse
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 AccessKeyResponse
impl Debug for AccessKeyResponse
Source§impl Default for AccessKeyResponse
impl Default for AccessKeyResponse
Source§fn default() -> AccessKeyResponse
fn default() -> AccessKeyResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccessKeyResponse
impl<'de> Deserialize<'de> for AccessKeyResponse
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
Source§impl PartialEq for AccessKeyResponse
impl PartialEq for AccessKeyResponse
Source§impl Serialize for AccessKeyResponse
impl Serialize for AccessKeyResponse
impl StructuralPartialEq for AccessKeyResponse
Auto Trait Implementations§
impl Freeze for AccessKeyResponse
impl RefUnwindSafe for AccessKeyResponse
impl Send for AccessKeyResponse
impl Sync for AccessKeyResponse
impl Unpin for AccessKeyResponse
impl UnwindSafe for AccessKeyResponse
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