Struct scratchstack_aspen::Statement[][src]

pub struct Statement {
    pub sid: Option<String>,
    pub effect: Effect,
    pub action: Option<ActionList>,
    pub not_action: Option<ActionList>,
    pub resource: Option<ResourceList>,
    pub not_resource: Option<ResourceList>,
    pub principal: Option<Principal>,
    pub not_principal: Option<Principal>,
    pub condition: Option<Condition>,
}

Fields

sid: Option<String>effect: Effectaction: Option<ActionList>not_action: Option<ActionList>resource: Option<ResourceList>not_resource: Option<ResourceList>principal: Option<Principal>not_principal: Option<Principal>condition: Option<Condition>

Trait Implementations

impl Debug for Statement[src]

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

impl Display for Statement[src]

impl FromStr for Statement[src]

type Err = Error

The associated error which can be returned from parsing.

impl PartialEq<Statement> for Statement[src]

impl Serialize for Statement[src]

impl StructuralPartialEq for Statement[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> ToString for T where
    T: Display + ?Sized
[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.