pub enum SfenMove {
DropMove {
to: Square,
piece: Piece,
},
Travel {
from: Square,
to: Square,
promoted: bool,
},
}Variants§
Implementations§
Auto Trait Implementations§
impl Freeze for SfenMove
impl RefUnwindSafe for SfenMove
impl Send for SfenMove
impl Sync for SfenMove
impl Unpin for SfenMove
impl UnwindSafe for SfenMove
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