Struct chess::CacheTable

source ·
pub struct CacheTable<T: Copy + Clone + PartialEq + PartialOrd> { /* private fields */ }
Expand description

Store a cache of entries, each with an associated hash.

Implementations

Create a new CacheTable with each associated entry initialized with a hash of ‘0’ Note: You must pass in a size where only 1 bit is set. (AKA: 2, 4, 8, 16, 1024, 65536, etc.) Panics when size is invalid.

Get a particular entry with the hash specified

Add (or overwrite) an entry with the associated hash

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.