pub enum UpgradeAction {
PackRevprops,
CleanupRevprops,
FormatBumped,
}Expand description
The type of notification action during a filesystem upgrade.
Used with the notify callback of upgrade().
Variants§
PackRevprops
Packing of revision properties for a shard has completed.
CleanupRevprops
Removal of the non-packed revprop shard has completed.
FormatBumped
The database format has been set to a new value.
Trait Implementations§
Source§impl Clone for UpgradeAction
impl Clone for UpgradeAction
Source§fn clone(&self) -> UpgradeAction
fn clone(&self) -> UpgradeAction
Returns a duplicate of the value. Read more
1.0.0 · 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 UpgradeAction
impl Debug for UpgradeAction
Source§impl PartialEq for UpgradeAction
impl PartialEq for UpgradeAction
impl Copy for UpgradeAction
impl Eq for UpgradeAction
impl StructuralPartialEq for UpgradeAction
Auto Trait Implementations§
impl Freeze for UpgradeAction
impl RefUnwindSafe for UpgradeAction
impl Send for UpgradeAction
impl Sync for UpgradeAction
impl Unpin for UpgradeAction
impl UnsafeUnpin for UpgradeAction
impl UnwindSafe for UpgradeAction
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