pub struct HistogramTable(/* private fields */);Expand description
Histograms of tricks taken by all seats in all strains
Each seat contains the same number of entries, which is the total number of solved deals. This invariant is not enforced by the type system, but it is expected to be upheld by the code.
Implementations§
Trait Implementations§
Source§impl Clone for HistogramTable
impl Clone for HistogramTable
Source§fn clone(&self) -> HistogramTable
fn clone(&self) -> HistogramTable
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 HistogramTable
impl Debug for HistogramTable
Source§impl Default for HistogramTable
impl Default for HistogramTable
Source§fn default() -> HistogramTable
fn default() -> HistogramTable
Returns the “default value” for a type. Read more
Source§impl FromIterator<TrickCountTable> for HistogramTable
impl FromIterator<TrickCountTable> for HistogramTable
Source§fn from_iter<I: IntoIterator<Item = TrickCountTable>>(iter: I) -> Self
fn from_iter<I: IntoIterator<Item = TrickCountTable>>(iter: I) -> Self
Creates a value from an iterator. Read more
Source§impl Hash for HistogramTable
impl Hash for HistogramTable
Source§impl Index<Seat> for HistogramTable
impl Index<Seat> for HistogramTable
Source§impl IndexMut<Seat> for HistogramTable
impl IndexMut<Seat> for HistogramTable
Source§impl PartialEq for HistogramTable
impl PartialEq for HistogramTable
Source§fn eq(&self, other: &HistogramTable) -> bool
fn eq(&self, other: &HistogramTable) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for HistogramTable
impl Eq for HistogramTable
impl StructuralPartialEq for HistogramTable
Auto Trait Implementations§
impl Freeze for HistogramTable
impl RefUnwindSafe for HistogramTable
impl Send for HistogramTable
impl Sync for HistogramTable
impl Unpin for HistogramTable
impl UnsafeUnpin for HistogramTable
impl UnwindSafe for HistogramTable
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