Struct cloud_storage::hmac_key::HmacMeta
source · [−]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,
}
Expand description
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
sourceimpl<'de> Deserialize<'de> for HmacMeta
impl<'de> Deserialize<'de> for HmacMeta
sourcefn 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 StructuralPartialEq for HmacMeta
Auto Trait Implementations
impl RefUnwindSafe for HmacMeta
impl Send for HmacMeta
impl Sync for HmacMeta
impl Unpin for HmacMeta
impl UnwindSafe for HmacMeta
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more