Struct terraform::TerraformEvent[][src]

pub struct TerraformEvent {
    pub change: Vec<TerraformResourceChange>,
    pub status: Option<TerraformResourceStatus>,
    pub resource_path: Option<String>,
    pub id_key: Option<String>,
    pub id_value: Option<String>,
    pub create_count: Option<u32>,
    pub update_count: Option<u32>,
    pub delete_count: Option<u32>,
    pub command: String,
    pub source: String,
    pub source_stream: TerraformSourceStream,
}

Fields

change: Vec<TerraformResourceChange>status: Option<TerraformResourceStatus>resource_path: Option<String>id_key: Option<String>id_value: Option<String>create_count: Option<u32>update_count: Option<u32>delete_count: Option<u32>command: Stringsource: Stringsource_stream: TerraformSourceStream

Trait Implementations

impl Debug for TerraformEvent[src]

impl Default for TerraformEvent[src]

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

impl Serialize for TerraformEvent[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.