pub struct PQLHandType {
pub ht: HandType,
pub ord: HandTypeOrd,
}Fields§
§ht: HandType§ord: HandTypeOrdImplementations§
Trait Implementations§
Source§impl Clone for PQLHandType
impl Clone for PQLHandType
Source§fn clone(&self) -> PQLHandType
fn clone(&self) -> PQLHandType
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 PQLHandType
impl Debug for PQLHandType
Source§impl Default for PQLHandType
impl Default for PQLHandType
Source§fn default() -> PQLHandType
fn default() -> PQLHandType
Returns the “default value” for a type. Read more
Source§impl Display for PQLHandType
impl Display for PQLHandType
Source§impl From<(HandType, HandTypeOrd)> for PQLHandType
impl From<(HandType, HandTypeOrd)> for PQLHandType
Source§fn from(value: (HandType, HandTypeOrd)) -> Self
fn from(value: (HandType, HandTypeOrd)) -> Self
Converts to this type from the input type.
Source§impl From<PQLHandType> for VmStackValue
impl From<PQLHandType> for VmStackValue
Source§fn from(value: PQLHandType) -> Self
fn from(value: PQLHandType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PQLHandType
impl PartialEq for PQLHandType
Source§impl PartialOrd for PQLHandType
impl PartialOrd for PQLHandType
Source§impl<'a> TryFrom<&'a VmValue> for &'a PQLHandType
impl<'a> TryFrom<&'a VmValue> for &'a PQLHandType
Source§impl<'a> TryFrom<&'a mut VmValue> for &'a mut PQLHandType
impl<'a> TryFrom<&'a mut VmValue> for &'a mut PQLHandType
Source§impl TryFrom<VmStackValue> for PQLHandType
impl TryFrom<VmStackValue> for PQLHandType
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 PQLHandType
impl Eq for PQLHandType
impl StructuralPartialEq for PQLHandType
Auto Trait Implementations§
impl Freeze for PQLHandType
impl RefUnwindSafe for PQLHandType
impl Send for PQLHandType
impl Sync for PQLHandType
impl Unpin for PQLHandType
impl UnwindSafe for PQLHandType
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