pub enum LeaseFactsConsistency {
Exact,
ApproximateDuringConcurrentDrop,
}Expand description
Consistency of independently observed active-region and active-byte counters.
Variants§
Exact
Both counters were observed at zero and cannot increase without the session owner.
ApproximateDuringConcurrentDrop
A concurrent active-mapping drop may make either nonzero counter stale-high.
Trait Implementations§
Source§impl Clone for LeaseFactsConsistency
impl Clone for LeaseFactsConsistency
Source§fn clone(&self) -> LeaseFactsConsistency
fn clone(&self) -> LeaseFactsConsistency
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for LeaseFactsConsistency
Source§impl Debug for LeaseFactsConsistency
impl Debug for LeaseFactsConsistency
impl Eq for LeaseFactsConsistency
Source§impl PartialEq for LeaseFactsConsistency
impl PartialEq for LeaseFactsConsistency
impl StructuralPartialEq for LeaseFactsConsistency
Auto Trait Implementations§
impl Freeze for LeaseFactsConsistency
impl RefUnwindSafe for LeaseFactsConsistency
impl Send for LeaseFactsConsistency
impl Sync for LeaseFactsConsistency
impl Unpin for LeaseFactsConsistency
impl UnsafeUnpin for LeaseFactsConsistency
impl UnwindSafe for LeaseFactsConsistency
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