#[repr(u8)]pub enum Rank {
One = 0,
Two = 1,
Three = 2,
Four = 3,
Five = 4,
Six = 5,
Seven = 6,
Eight = 7,
}Expand description
A chessboard rank from one through eight.
Variants§
One = 0
First rank.
Two = 1
Second rank.
Three = 2
Third rank.
Four = 3
Fourth rank.
Five = 4
Fifth rank.
Six = 5
Sixth rank.
Seven = 6
Seventh rank.
Eight = 7
Eighth rank.
Implementations§
Trait Implementations§
impl Copy for Rank
impl Eq for Rank
Source§impl Ord for Rank
impl Ord for Rank
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for Rank
impl PartialOrd for Rank
impl StructuralPartialEq for Rank
Auto Trait Implementations§
impl Freeze for Rank
impl RefUnwindSafe for Rank
impl Send for Rank
impl Sync for Rank
impl Unpin for Rank
impl UnsafeUnpin for Rank
impl UnwindSafe for Rank
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