pub enum Delta {
Show 16 variants
N,
NE,
NNE,
NEE,
E,
SE,
SEE,
SSE,
S,
SW,
SSW,
SWW,
W,
NW,
NWW,
NNW,
}
Expand description
Delta enum lists the possible deltas of chess pieces
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Delta
impl RefUnwindSafe for Delta
impl Send for Delta
impl Sync for Delta
impl Unpin for Delta
impl UnwindSafe for Delta
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