pub enum ChangeDetection {
None = 0,
ProbableRoundNumber = 1,
ProbableScriptContinuity = 2,
ProbableValueProximity = 3,
HighRoundNumber = 4,
HighScoreContinuity = 5,
HighMultiMethod = 6,
Reserved7 = 7,
}Variants§
None = 0
ProbableRoundNumber = 1
ProbableScriptContinuity = 2
ProbableValueProximity = 3
HighRoundNumber = 4
HighScoreContinuity = 5
HighMultiMethod = 6
Reserved7 = 7
Trait Implementations§
Source§impl Clone for ChangeDetection
impl Clone for ChangeDetection
Source§fn clone(&self) -> ChangeDetection
fn clone(&self) -> ChangeDetection
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 ChangeDetection
Source§impl Debug for ChangeDetection
impl Debug for ChangeDetection
Source§impl Default for ChangeDetection
impl Default for ChangeDetection
Source§fn default() -> ChangeDetection
fn default() -> ChangeDetection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ChangeDetection
impl<'de> Deserialize<'de> for ChangeDetection
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 ChangeDetection
Source§impl PartialEq for ChangeDetection
impl PartialEq for ChangeDetection
Source§fn eq(&self, other: &ChangeDetection) -> bool
fn eq(&self, other: &ChangeDetection) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ChangeDetection
impl Serialize for ChangeDetection
impl StructuralPartialEq for ChangeDetection
Auto Trait Implementations§
impl Freeze for ChangeDetection
impl RefUnwindSafe for ChangeDetection
impl Send for ChangeDetection
impl Sync for ChangeDetection
impl Unpin for ChangeDetection
impl UnsafeUnpin for ChangeDetection
impl UnwindSafe for ChangeDetection
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