pub struct MctsState(pub AtomicU8);Expand description
Represents the current state of an MCTS (Monte Carlo Tree Search) instance, controlling the flow of operations and preventing invalid sequential calls.
Tuple Fields§
§0: AtomicU8Implementations§
Source§impl MctsState
impl MctsState
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for MctsState
impl RefUnwindSafe for MctsState
impl Send for MctsState
impl Sync for MctsState
impl Unpin for MctsState
impl UnwindSafe for MctsState
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