pub enum PairwiseChoice {
A,
B,
Tie,
}Variants§
Trait Implementations§
Source§impl Clone for PairwiseChoice
impl Clone for PairwiseChoice
Source§fn clone(&self) -> PairwiseChoice
fn clone(&self) -> PairwiseChoice
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 PairwiseChoice
impl Debug for PairwiseChoice
Source§impl<'de> Deserialize<'de> for PairwiseChoice
impl<'de> Deserialize<'de> for PairwiseChoice
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 PairwiseChoice
impl PartialEq for PairwiseChoice
Source§fn eq(&self, other: &PairwiseChoice) -> bool
fn eq(&self, other: &PairwiseChoice) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PairwiseChoice
impl Serialize for PairwiseChoice
impl Copy for PairwiseChoice
impl Eq for PairwiseChoice
impl StructuralPartialEq for PairwiseChoice
Auto Trait Implementations§
impl Freeze for PairwiseChoice
impl RefUnwindSafe for PairwiseChoice
impl Send for PairwiseChoice
impl Sync for PairwiseChoice
impl Unpin for PairwiseChoice
impl UnsafeUnpin for PairwiseChoice
impl UnwindSafe for PairwiseChoice
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