pub enum RecallDecision {
AdmitAuthoritative,
AdmitBackground,
DemoteArtifact,
QuarantineSpeculative,
RejectNoise,
}Variants§
Trait Implementations§
Source§impl Clone for RecallDecision
impl Clone for RecallDecision
Source§fn clone(&self) -> RecallDecision
fn clone(&self) -> RecallDecision
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 RecallDecision
impl Debug for RecallDecision
Source§impl<'de> Deserialize<'de> for RecallDecision
impl<'de> Deserialize<'de> for RecallDecision
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for RecallDecision
Source§impl PartialEq for RecallDecision
impl PartialEq for RecallDecision
Source§fn eq(&self, other: &RecallDecision) -> bool
fn eq(&self, other: &RecallDecision) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RecallDecision
impl Serialize for RecallDecision
impl StructuralPartialEq for RecallDecision
Auto Trait Implementations§
impl Freeze for RecallDecision
impl RefUnwindSafe for RecallDecision
impl Send for RecallDecision
impl Sync for RecallDecision
impl Unpin for RecallDecision
impl UnsafeUnpin for RecallDecision
impl UnwindSafe for RecallDecision
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