#[repr(u8)]pub enum File {
A = 0,
B = 1,
C = 2,
D = 3,
E = 4,
F = 5,
G = 6,
H = 7,
}Expand description
A file of the chessboard.
Variants§
Implementations§
Source§impl File
impl File
Sourcepub const unsafe fn new_unchecked(index: u32) -> File
pub const unsafe fn new_unchecked(index: u32) -> File
Gets a File from an integer index.
§Safety
It is the callers responsibility to ensure the index is in the range
0..=7.
pub const fn from_char(ch: char) -> Option<File>
pub const fn char(self) -> char
pub const fn upper_char(self) -> char
pub fn offset(self, delta: i32) -> Option<File>
pub const fn distance(self, other: File) -> u32
pub const fn flip_horizontal(self) -> File
pub const fn flip_diagonal(self) -> Rank
pub const fn flip_anti_diagonal(self) -> Rank
pub const fn to_u32(self) -> u32
pub const fn to_usize(self) -> usize
Trait Implementations§
Source§impl Ord for File
impl Ord for File
Source§impl PartialOrd for File
impl PartialOrd for File
impl Copy for File
impl Eq for File
impl StructuralPartialEq for File
Auto Trait Implementations§
impl Freeze for File
impl RefUnwindSafe for File
impl Send for File
impl Sync for File
impl Unpin for File
impl UnwindSafe for File
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