pub enum BackupState {
None,
Active {
used_bytes: i64,
quota_bytes: i64,
},
Inactive(String),
}Expand description
The account’s managed-backup state, as the CLI needs it to decide what to do.
Variants§
None
No backup plan yet (the control plane returned 404).
Active
An active, paid plan.
Inactive(String)
A plan row exists but isn’t active (e.g. canceled, past_due).
Auto Trait Implementations§
impl Freeze for BackupState
impl RefUnwindSafe for BackupState
impl Send for BackupState
impl Sync for BackupState
impl Unpin for BackupState
impl UnsafeUnpin for BackupState
impl UnwindSafe for BackupState
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