Enum cloudformatious::StackStatus
source · [−]pub enum StackStatus {
Show 22 variants
CreateInProgress,
CreateFailed,
CreateComplete,
RollbackInProgress,
RollbackFailed,
RollbackComplete,
DeleteInProgress,
DeleteFailed,
DeleteComplete,
UpdateInProgress,
UpdateCompleteCleanupInProgress,
UpdateComplete,
UpdateRollbackInProgress,
UpdateRollbackFailed,
UpdateRollbackCompleteCleanupInProgress,
UpdateRollbackComplete,
ReviewInProgress,
ImportInProgress,
ImportComplete,
ImportRollbackInProgress,
ImportRollbackFailed,
ImportRollbackComplete,
}
Expand description
Possible stack statuses.
Variants
CreateInProgress
CreateFailed
CreateComplete
RollbackInProgress
RollbackFailed
RollbackComplete
DeleteInProgress
DeleteFailed
DeleteComplete
UpdateInProgress
UpdateCompleteCleanupInProgress
UpdateComplete
UpdateRollbackInProgress
UpdateRollbackFailed
UpdateRollbackCompleteCleanupInProgress
UpdateRollbackComplete
ReviewInProgress
ImportInProgress
ImportComplete
ImportRollbackInProgress
ImportRollbackFailed
ImportRollbackComplete
Trait Implementations
sourceimpl Clone for StackStatus
impl Clone for StackStatus
sourcefn clone(&self) -> StackStatus
fn clone(&self) -> StackStatus
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for StackStatus
impl Debug for StackStatus
sourceimpl Display for StackStatus
impl Display for StackStatus
sourceimpl FromStr for StackStatus
impl FromStr for StackStatus
sourceimpl PartialEq<StackStatus> for StackStatus
impl PartialEq<StackStatus> for StackStatus
sourcefn eq(&self, other: &StackStatus) -> bool
fn eq(&self, other: &StackStatus) -> bool
sourceimpl Status for StackStatus
impl Status for StackStatus
sourcefn is_terminal(&self) -> bool
fn is_terminal(&self) -> bool
Indicates whether or not a status is terminal. Read more
sourcefn sentiment(&self) -> StatusSentiment
fn sentiment(&self) -> StatusSentiment
Indicates the sentiment of the status. Read more
impl Copy for StackStatus
impl Eq for StackStatus
impl StructuralEq for StackStatus
impl StructuralPartialEq for StackStatus
Auto Trait Implementations
impl RefUnwindSafe for StackStatus
impl Send for StackStatus
impl Sync for StackStatus
impl Unpin for StackStatus
impl UnwindSafe for StackStatus
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.