Enum kube_core::params::PropagationPolicy
source · [−]pub enum PropagationPolicy {
Orphan,
Background,
Foreground,
}
Expand description
Propagation policy when deleting single objects
Variants
Orphan
Orphan dependents
Background
Allow the garbage collector to delete the dependents in the background
Foreground
A cascading policy that deletes all dependents in the foreground
Trait Implementations
sourceimpl Clone for PropagationPolicy
impl Clone for PropagationPolicy
sourcefn clone(&self) -> PropagationPolicy
fn clone(&self) -> PropagationPolicy
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 more
sourceimpl Debug for PropagationPolicy
impl Debug for PropagationPolicy
sourceimpl Serialize for PropagationPolicy
impl Serialize for PropagationPolicy
Auto Trait Implementations
impl RefUnwindSafe for PropagationPolicy
impl Send for PropagationPolicy
impl Sync for PropagationPolicy
impl Unpin for PropagationPolicy
impl UnwindSafe for PropagationPolicy
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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