pub enum BestMove {
Move(Move, Option<Move>),
Resign,
Win,
Abort,
}Expand description
指し手
Variants§
Move(Move, Option<Move>)
通常の指し手(ponderをOptionで指定可能)
Resign
投了
Win
入玉勝ち宣言
Abort
中断(USIプロトコルの仕様にはない。返してもGUI側にコマンドは送信されない)
Trait Implementations§
Source§impl PartialOrd for BestMove
impl PartialOrd for BestMove
Source§impl ToSfen<ToMoveStringConvertError> for BestMove
impl ToSfen<ToMoveStringConvertError> for BestMove
impl Copy for BestMove
impl Eq for BestMove
impl StructuralPartialEq for BestMove
Auto Trait Implementations§
impl Freeze for BestMove
impl RefUnwindSafe for BestMove
impl Send for BestMove
impl Sync for BestMove
impl Unpin for BestMove
impl UnsafeUnpin for BestMove
impl UnwindSafe for BestMove
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