[][src]Struct cloud_storage::bucket::IamCondition

pub struct IamCondition {
    pub title: String,
    pub description: Option<String>,
    pub expression: String,
}

A condition object associated with a binding.

Fields

title: String

Title of the condition. For example, "expires_end_of_2018".

description: Option<String>

Optional description of the condition. For example, "Expires at midnight on 2018-12-31".

expression: String

Attribute-based logic expression using a subset of the Common Expression Language (CEL). For example, "request.time < timestamp('2019-01-01T00:00:00Z')".

Trait Implementations

impl Debug for IamCondition[src]

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

impl PartialEq<IamCondition> for IamCondition[src]

impl Serialize for IamCondition[src]

impl StructuralPartialEq for IamCondition[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.