[][src]Struct cloud_storage::hmac_key::HmacMeta

pub struct HmacMeta {
    pub kind: String,
    pub id: String,
    pub self_link: String,
    pub access_id: String,
    pub project_id: String,
    pub service_account_email: String,
    pub state: HmacState,
    pub time_created: DateTime<Utc>,
    pub updated: DateTime<Utc>,
    pub etag: String,
}

Contains information about an Hmac Key.

Fields

kind: String

The kind of item this is. For HMAC key metadata, this is always storage#hmacKeyMetadata.

id: String

The ID of the HMAC key, including the Project ID and the Access ID.

self_link: String

The link to this resource.

access_id: String

The access ID of the HMAC Key.

project_id: String

The Project ID of the project that owns the service account to which the key authenticates.

service_account_email: String

The email address of the key's associated service account.

state: HmacState

The state of the key.

time_created: DateTime<Utc>

The creation time of the HMAC key.

updated: DateTime<Utc>

The last modification time of the HMAC key metadata.

etag: String

HTTP 1.1 Entity tag for the HMAC key.

Trait Implementations

impl Debug for HmacMeta[src]

impl<'de> Deserialize<'de> for HmacMeta[src]

impl PartialEq<HmacMeta> for HmacMeta[src]

impl Serialize for HmacMeta[src]

impl StructuralPartialEq for HmacMeta[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.