pub enum UtilitySignal {
Used,
OutcomeSucceeded,
OutcomeFailed,
OperatorMarkedUseful,
}Expand description
Utility signal observed from use or outcomes.
Variants§
Used
The memory was retrieved or used; exposure only.
OutcomeSucceeded
The memory helped under a declared scope.
OutcomeFailed
The memory did not help under a declared scope.
OperatorMarkedUseful
Operator explicitly marked the memory useful.
Trait Implementations§
Source§impl Clone for UtilitySignal
impl Clone for UtilitySignal
Source§fn clone(&self) -> UtilitySignal
fn clone(&self) -> UtilitySignal
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 moreSource§impl Debug for UtilitySignal
impl Debug for UtilitySignal
Source§impl PartialEq for UtilitySignal
impl PartialEq for UtilitySignal
Source§fn eq(&self, other: &UtilitySignal) -> bool
fn eq(&self, other: &UtilitySignal) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for UtilitySignal
impl Eq for UtilitySignal
impl StructuralPartialEq for UtilitySignal
Auto Trait Implementations§
impl Freeze for UtilitySignal
impl RefUnwindSafe for UtilitySignal
impl Send for UtilitySignal
impl Sync for UtilitySignal
impl Unpin for UtilitySignal
impl UnsafeUnpin for UtilitySignal
impl UnwindSafe for UtilitySignal
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.