pub struct BookMove {
pub win: usize,
pub draw: usize,
pub loss: usize,
pub uci: String,
pub san: String,
}Expand description
book move
Fields§
§win: usizewhite wins
draw: usizedraw
loss: usizeblack wins
uci: Stringuci
san: Stringsan
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BookMove
impl RefUnwindSafe for BookMove
impl Send for BookMove
impl Sync for BookMove
impl Unpin for BookMove
impl UnwindSafe for BookMove
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