pub enum RollbackReason {
FatalToolError {
tool_name: String,
error: String,
},
GovernanceDenied {
tool_name: String,
reason: String,
},
ProviderFailure {
error: String,
},
Timeout,
UserInterrupt,
MalformedReplay {
reason: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for RollbackReason
impl Clone for RollbackReason
Source§fn clone(&self) -> RollbackReason
fn clone(&self) -> RollbackReason
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RollbackReason
impl Debug for RollbackReason
Source§impl<'de> Deserialize<'de> for RollbackReason
impl<'de> Deserialize<'de> for RollbackReason
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
impl Eq for RollbackReason
Source§impl PartialEq for RollbackReason
impl PartialEq for RollbackReason
Source§fn eq(&self, other: &RollbackReason) -> bool
fn eq(&self, other: &RollbackReason) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RollbackReason
impl Serialize for RollbackReason
impl StructuralPartialEq for RollbackReason
Auto Trait Implementations§
impl Freeze for RollbackReason
impl RefUnwindSafe for RollbackReason
impl Send for RollbackReason
impl Sync for RollbackReason
impl Unpin for RollbackReason
impl UnsafeUnpin for RollbackReason
impl UnwindSafe for RollbackReason
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