pub struct Entry {
pub hash: HashKind,
pub key_move: Move,
pub score: Cp,
pub ply: PlyKind,
pub node_kind: NodeKind,
}
Expand description
Entry contains information about a single previously searched position.
Fields§
§hash: HashKind
Full hash value for a position.
key_move: Move
Best move or refutation move of position.
score: Cp
The Score in centipawns for the position.
ply: PlyKind
The ply/depth that was searched to in this position’s subtree.
node_kind: NodeKind
Type of Node this position has in search tree.
Implementations§
Trait Implementations§
impl Copy for Entry
impl Eq for Entry
impl StructuralPartialEq for Entry
Auto Trait Implementations§
impl Freeze for Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnwindSafe for Entry
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