[][src]Struct myopic_board::CastleZoneSet

pub struct CastleZoneSet { /* fields omitted */ }

Implementations

impl CastleZoneSet[src]

pub fn contains(self, zone: CastleZone) -> bool[src]

pub fn intersects(self, other: CastleZoneSet) -> bool[src]

pub fn iter(self) -> impl Iterator<Item = CastleZone>[src]

pub const ALL: CastleZoneSet[src]

pub const NONE: CastleZoneSet[src]

pub const WHITE: CastleZoneSet[src]

pub const BLACK: CastleZoneSet[src]

pub const WK: CastleZoneSet[src]

pub const WQ: CastleZoneSet[src]

pub const BK: CastleZoneSet[src]

pub const BQ: CastleZoneSet[src]

Trait Implementations

impl BitAnd<CastleZoneSet> for CastleZoneSet[src]

type Output = CastleZoneSet

The resulting type after applying the & operator.

impl BitOr<CastleZoneSet> for CastleZoneSet[src]

type Output = CastleZoneSet

The resulting type after applying the | operator.

impl Clone for CastleZoneSet[src]

impl Copy for CastleZoneSet[src]

impl Debug for CastleZoneSet[src]

impl Eq for CastleZoneSet[src]

impl FromIterator<CastleZone> for CastleZoneSet[src]

impl Hash for CastleZoneSet[src]

impl PartialEq<CastleZoneSet> for CastleZoneSet[src]

impl PartialOrd<CastleZoneSet> for CastleZoneSet[src]

impl Reflectable for CastleZoneSet[src]

impl StructuralEq for CastleZoneSet[src]

impl StructuralPartialEq for CastleZoneSet[src]

impl Sub<CastleZoneSet> for CastleZoneSet[src]

type Output = CastleZoneSet

The resulting type after applying the - operator.

impl SubAssign<CastleZoneSet> for CastleZoneSet[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.