pub enum PickEarlyType {
Never,
FirstBestScoreImproving,
FirstLastStepScoreImproving,
}Expand description
Pick early type.
Variants§
Never
Never pick early.
FirstBestScoreImproving
Pick first improving move.
FirstLastStepScoreImproving
Pick first last step score improving move.
Trait Implementations§
Source§impl Clone for PickEarlyType
impl Clone for PickEarlyType
Source§fn clone(&self) -> PickEarlyType
fn clone(&self) -> PickEarlyType
Returns a duplicate of the value. Read more
1.0.0 · 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 PickEarlyType
impl Debug for PickEarlyType
Source§impl Default for PickEarlyType
impl Default for PickEarlyType
Source§fn default() -> PickEarlyType
fn default() -> PickEarlyType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PickEarlyType
impl<'de> Deserialize<'de> for PickEarlyType
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
Source§impl PartialEq for PickEarlyType
impl PartialEq for PickEarlyType
Source§impl Serialize for PickEarlyType
impl Serialize for PickEarlyType
impl Copy for PickEarlyType
impl Eq for PickEarlyType
impl StructuralPartialEq for PickEarlyType
Auto Trait Implementations§
impl Freeze for PickEarlyType
impl RefUnwindSafe for PickEarlyType
impl Send for PickEarlyType
impl Sync for PickEarlyType
impl Unpin for PickEarlyType
impl UnwindSafe for PickEarlyType
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.