pub struct PQLFlopHandCategory {
pub category: FlopHandCategory,
pub ord: HandTypeOrd,
}Fields§
§category: FlopHandCategory§ord: HandTypeOrdImplementations§
Trait Implementations§
Source§impl Clone for PQLFlopHandCategory
impl Clone for PQLFlopHandCategory
Source§fn clone(&self) -> PQLFlopHandCategory
fn clone(&self) -> PQLFlopHandCategory
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 PQLFlopHandCategory
impl Debug for PQLFlopHandCategory
Source§impl Default for PQLFlopHandCategory
impl Default for PQLFlopHandCategory
Source§fn default() -> PQLFlopHandCategory
fn default() -> PQLFlopHandCategory
Returns the “default value” for a type. Read more
Source§impl Display for PQLFlopHandCategory
impl Display for PQLFlopHandCategory
Source§impl From<(FlopHandCategory, PQLGame)> for PQLFlopHandCategory
impl From<(FlopHandCategory, PQLGame)> for PQLFlopHandCategory
Source§fn from(t: (FlopHandCategory, PQLGame)) -> Self
fn from(t: (FlopHandCategory, PQLGame)) -> Self
Converts to this type from the input type.
Source§impl From<PQLFlopHandCategory> for VmStackValue
impl From<PQLFlopHandCategory> for VmStackValue
Source§fn from(value: PQLFlopHandCategory) -> Self
fn from(value: PQLFlopHandCategory) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PQLFlopHandCategory
impl PartialEq for PQLFlopHandCategory
Source§impl PartialOrd for PQLFlopHandCategory
impl PartialOrd for PQLFlopHandCategory
Source§impl<'a> TryFrom<&'a VmValue> for &'a PQLFlopHandCategory
impl<'a> TryFrom<&'a VmValue> for &'a PQLFlopHandCategory
Source§impl<'a> TryFrom<&'a mut VmValue> for &'a mut PQLFlopHandCategory
impl<'a> TryFrom<&'a mut VmValue> for &'a mut PQLFlopHandCategory
Source§impl TryFrom<VmStackValue> for PQLFlopHandCategory
impl TryFrom<VmStackValue> for PQLFlopHandCategory
Source§type Error = TryIntoError<VmStackValue>
type Error = TryIntoError<VmStackValue>
The type returned in the event of a conversion error.
Source§fn try_from(value: VmStackValue) -> Result<Self, TryIntoError<VmStackValue>>
fn try_from(value: VmStackValue) -> Result<Self, TryIntoError<VmStackValue>>
Performs the conversion.
impl Copy for PQLFlopHandCategory
impl Eq for PQLFlopHandCategory
impl StructuralPartialEq for PQLFlopHandCategory
Auto Trait Implementations§
impl Freeze for PQLFlopHandCategory
impl RefUnwindSafe for PQLFlopHandCategory
impl Send for PQLFlopHandCategory
impl Sync for PQLFlopHandCategory
impl Unpin for PQLFlopHandCategory
impl UnwindSafe for PQLFlopHandCategory
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