pub enum IsPruned {
Pruned,
NotPruned,
MaybePruned,
}
Expand description
The result return by StateDb::is_pruned
Variants§
Pruned
Definitely pruned
NotPruned
Definitely not pruned
MaybePruned
May or may not pruned, need further checking
Trait Implementations§
impl Eq for IsPruned
impl StructuralPartialEq for IsPruned
Auto Trait Implementations§
impl Freeze for IsPruned
impl RefUnwindSafe for IsPruned
impl Send for IsPruned
impl Sync for IsPruned
impl Unpin for IsPruned
impl UnwindSafe for IsPruned
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