pub enum WithStorages {
AndTheirBackups,
AndKeepBackups,
LeaveThem,
}Expand description
Whether a server’s delete takes its storages with it, and what becomes of their backups. UpCloud spells this as a query string; no caller spells it.
Variants§
AndTheirBackups
?storages=1&backups=delete — the server and everything under it.
Caller: private-gunnar-ops orphan sweep.
AndKeepBackups
?storages=1&backups=keep — the server and its volumes; the backups
stay. Caller: monetize-cloud-impl destroy.
LeaveThem
The server alone; its volumes are left behind (and become orphans).
Trait Implementations§
Source§impl Clone for WithStorages
impl Clone for WithStorages
impl Copy for WithStorages
Source§impl Debug for WithStorages
impl Debug for WithStorages
impl Eq for WithStorages
Source§impl PartialEq for WithStorages
impl PartialEq for WithStorages
impl StructuralPartialEq for WithStorages
Auto Trait Implementations§
impl Freeze for WithStorages
impl RefUnwindSafe for WithStorages
impl Send for WithStorages
impl Sync for WithStorages
impl Unpin for WithStorages
impl UnsafeUnpin for WithStorages
impl UnwindSafe for WithStorages
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