#[repr(transparent)]pub struct TrickCountTable(pub [TrickCountRow; 5]);Expand description
Tricks that each seat can take as declarer for all strains
Tuple Fields§
§0: [TrickCountRow; 5]Implementations§
Trait Implementations§
Source§impl Clone for TrickCountTable
impl Clone for TrickCountTable
Source§fn clone(&self) -> TrickCountTable
fn clone(&self) -> TrickCountTable
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 moreimpl Copy for TrickCountTable
Source§impl Debug for TrickCountTable
impl Debug for TrickCountTable
impl Eq for TrickCountTable
Source§impl From<DdTableResults> for TrickCountTable
impl From<DdTableResults> for TrickCountTable
Source§fn from(table: DdTableResults) -> Self
fn from(table: DdTableResults) -> Self
Converts to this type from the input type.
Source§impl From<TrickCountTable> for DdTableResults
impl From<TrickCountTable> for DdTableResults
Source§fn from(table: TrickCountTable) -> Self
fn from(table: TrickCountTable) -> Self
Converts to this type from the input type.
Source§impl Hash for TrickCountTable
impl Hash for TrickCountTable
Source§impl Index<Strain> for TrickCountTable
impl Index<Strain> for TrickCountTable
Source§type Output = TrickCountRow
type Output = TrickCountRow
The returned type after indexing.
Source§impl PartialEq for TrickCountTable
impl PartialEq for TrickCountTable
Source§fn eq(&self, other: &TrickCountTable) -> bool
fn eq(&self, other: &TrickCountTable) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TrickCountTable
Auto Trait Implementations§
impl Freeze for TrickCountTable
impl RefUnwindSafe for TrickCountTable
impl Send for TrickCountTable
impl Sync for TrickCountTable
impl Unpin for TrickCountTable
impl UnsafeUnpin for TrickCountTable
impl UnwindSafe for TrickCountTable
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