pub struct TrainingDataEntry {
pub pos: Position,
pub mv: Move,
pub score: i16,
pub ply: u16,
pub result: i16,
}Fields§
§pos: Position§mv: Move§score: i16§ply: u16§result: i16Trait Implementations§
Source§impl Clone for TrainingDataEntry
impl Clone for TrainingDataEntry
Source§fn clone(&self) -> TrainingDataEntry
fn clone(&self) -> TrainingDataEntry
Returns a copy of the value. Read more
1.0.0 · 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 TrainingDataEntry
impl Debug for TrainingDataEntry
impl Copy for TrainingDataEntry
Auto Trait Implementations§
impl Freeze for TrainingDataEntry
impl RefUnwindSafe for TrainingDataEntry
impl Send for TrainingDataEntry
impl Sync for TrainingDataEntry
impl Unpin for TrainingDataEntry
impl UnwindSafe for TrainingDataEntry
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