pub enum UpdateReplacePolicy {
Delete,
Snapshot,
Retain,
}Variants§
Delete
Delete is the default, deleting the resource (if possible)
Snapshot
Snapshot deletes it after creating a snapshot
Retain
Retain keeps the resource
Trait Implementations§
Source§impl From<UpdateReplacePolicy> for String
impl From<UpdateReplacePolicy> for String
Source§fn from(value: UpdateReplacePolicy) -> String
fn from(value: UpdateReplacePolicy) -> String
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for UpdateReplacePolicy
impl RefUnwindSafe for UpdateReplacePolicy
impl Send for UpdateReplacePolicy
impl Sync for UpdateReplacePolicy
impl Unpin for UpdateReplacePolicy
impl UnsafeUnpin for UpdateReplacePolicy
impl UnwindSafe for UpdateReplacePolicy
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