pub struct Attributes {Show 13 fields
pub message: String,
pub terraform_version: Option<String>,
pub plan_only: Option<bool>,
pub save_plan: Option<bool>,
pub target_addrs: Vec<String>,
pub replace_addrs: Vec<String>,
pub refresh: Option<bool>,
pub refresh_only: Option<bool>,
pub auto_apply: Option<bool>,
pub allow_empty_apply: bool,
pub is_destroy: Option<bool>,
pub created_at: Option<String>,
pub status: Option<Status>,
}Fields§
§message: String§terraform_version: Option<String>§plan_only: Option<bool>§save_plan: Option<bool>§target_addrs: Vec<String>§replace_addrs: Vec<String>§refresh: Option<bool>§refresh_only: Option<bool>§auto_apply: Option<bool>§allow_empty_apply: bool§is_destroy: Option<bool>§created_at: Option<String>§status: Option<Status>Trait Implementations§
Source§impl Clone for Attributes
impl Clone for Attributes
Source§fn clone(&self) -> Attributes
fn clone(&self) -> Attributes
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Attributes
impl Debug for Attributes
Source§impl Default for Attributes
impl Default for Attributes
Source§impl<'de> Deserialize<'de> for Attributes
impl<'de> Deserialize<'de> for Attributes
Source§fn 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
Auto Trait Implementations§
impl Freeze for Attributes
impl RefUnwindSafe for Attributes
impl Send for Attributes
impl Sync for Attributes
impl Unpin for Attributes
impl UnwindSafe for Attributes
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more