pub struct MctsScore<const N: usize> {
pub id: MctsId,
pub scores: [i32; N],
}Expand description
A structure bundling the final score array with its targeted engine ID.
Fields§
§id: MctsId§scores: [i32; N]Auto Trait Implementations§
impl<const N: usize> Freeze for MctsScore<N>
impl<const N: usize> RefUnwindSafe for MctsScore<N>
impl<const N: usize> Send for MctsScore<N>
impl<const N: usize> Sync for MctsScore<N>
impl<const N: usize> Unpin for MctsScore<N>
impl<const N: usize> UnsafeUnpin for MctsScore<N>
impl<const N: usize> UnwindSafe for MctsScore<N>
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