pub enum FlopHandCategory {
Show 18 variants
Nothing,
UnderPair,
ThirdPair,
Pocket23,
SecondPair,
Pocket12,
TopPair,
Overpair,
BottomTwo,
TopAndBottom,
TopTwo,
Trips,
Set,
Straight,
Flush,
FullHouse,
Quads,
StraightFlush,
}Variants§
Nothing
UnderPair
ThirdPair
Pocket23
SecondPair
Pocket12
TopPair
Overpair
BottomTwo
TopAndBottom
TopTwo
Trips
Set
Straight
Flush
FullHouse
Quads
StraightFlush
Implementations§
Trait Implementations§
Source§impl Clone for FlopHandCategory
impl Clone for FlopHandCategory
Source§fn clone(&self) -> FlopHandCategory
fn clone(&self) -> FlopHandCategory
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 FlopHandCategory
impl Debug for FlopHandCategory
Source§impl Default for FlopHandCategory
impl Default for FlopHandCategory
Source§fn default() -> FlopHandCategory
fn default() -> FlopHandCategory
Returns the “default value” for a type. Read more
Source§impl Display for FlopHandCategory
impl Display for FlopHandCategory
Source§impl FromStr for FlopHandCategory
impl FromStr for FlopHandCategory
Source§impl PartialEq for FlopHandCategory
impl PartialEq for FlopHandCategory
impl Copy for FlopHandCategory
impl Eq for FlopHandCategory
impl StructuralPartialEq for FlopHandCategory
Auto Trait Implementations§
impl Freeze for FlopHandCategory
impl RefUnwindSafe for FlopHandCategory
impl Send for FlopHandCategory
impl Sync for FlopHandCategory
impl Unpin for FlopHandCategory
impl UnwindSafe for FlopHandCategory
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more