Enum pgn_reader::CastlingSide
source · [−]pub enum CastlingSide {
KingSide,
QueenSide,
}Expand description
KingSide (O-O) or QueenSide (O-O-O).
Variants
KingSide
QueenSide
Implementations
sourceimpl CastlingSide
impl CastlingSide
pub const fn is_queen_side(self) -> bool
pub const fn is_king_side(self) -> bool
pub const fn from_queen_side(queen_side: bool) -> CastlingSide
pub const fn from_king_side(king_side: bool) -> CastlingSide
pub const fn king_to_file(self) -> File
pub const fn rook_to_file(self) -> File
pub fn king_to(self, color: Color) -> Square
pub fn rook_to(self, color: Color) -> Square
sourcepub const ALL: [CastlingSide; 2] = [CastlingSide::KingSide, CastlingSide::QueenSide]
pub const ALL: [CastlingSide; 2] = [CastlingSide::KingSide, CastlingSide::QueenSide]
KingSide and QueenSide, in this order.
Trait Implementations
sourceimpl Clone for CastlingSide
impl Clone for CastlingSide
sourcefn clone(&self) -> CastlingSide
fn clone(&self) -> CastlingSide
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for CastlingSide
impl Debug for CastlingSide
sourceimpl Hash for CastlingSide
impl Hash for CastlingSide
sourceimpl PartialEq<CastlingSide> for CastlingSide
impl PartialEq<CastlingSide> for CastlingSide
sourcefn eq(&self, other: &CastlingSide) -> bool
fn eq(&self, other: &CastlingSide) -> bool
impl Copy for CastlingSide
impl Eq for CastlingSide
impl StructuralEq for CastlingSide
impl StructuralPartialEq for CastlingSide
Auto Trait Implementations
impl RefUnwindSafe for CastlingSide
impl Send for CastlingSide
impl Sync for CastlingSide
impl Unpin for CastlingSide
impl UnwindSafe for CastlingSide
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more