pub enum DeleteScope {
Full,
LiveOnly,
}Expand description
Scope for a delete operation.
Full deletes are setup/admin owned and may remove both Frozen and Live resources. Live-only deletes are used by setup handoff resources (Terraform/CloudFormation) so Alien removes only the resources it owns before setup tears down Frozen resources.
Variants§
Trait Implementations§
Source§impl Clone for DeleteScope
impl Clone for DeleteScope
Source§fn clone(&self) -> DeleteScope
fn clone(&self) -> DeleteScope
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 DeleteScope
impl Debug for DeleteScope
Source§impl<'de> Deserialize<'de> for DeleteScope
impl<'de> Deserialize<'de> for DeleteScope
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
Source§impl PartialEq for DeleteScope
impl PartialEq for DeleteScope
Source§fn eq(&self, other: &DeleteScope) -> bool
fn eq(&self, other: &DeleteScope) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DeleteScope
impl Serialize for DeleteScope
impl Copy for DeleteScope
impl Eq for DeleteScope
impl StructuralPartialEq for DeleteScope
Auto Trait Implementations§
impl Freeze for DeleteScope
impl RefUnwindSafe for DeleteScope
impl Send for DeleteScope
impl Sync for DeleteScope
impl Unpin for DeleteScope
impl UnsafeUnpin for DeleteScope
impl UnwindSafe for DeleteScope
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.