[]Struct myopic_brain::CastleZoneSet

pub struct CastleZoneSet { /* fields omitted */ }

Implementations

impl CastleZoneSet

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

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

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

pub const ALL: CastleZoneSet

pub const NONE: CastleZoneSet

pub const WHITE: CastleZoneSet

pub const BLACK: CastleZoneSet

pub const WK: CastleZoneSet

pub const WQ: CastleZoneSet

pub const BK: CastleZoneSet

pub const BQ: CastleZoneSet

Trait Implementations

impl BitAnd<CastleZoneSet> for CastleZoneSet

type Output = CastleZoneSet

The resulting type after applying the & operator.

impl BitOr<CastleZoneSet> for CastleZoneSet

type Output = CastleZoneSet

The resulting type after applying the | operator.

impl Clone for CastleZoneSet

impl Copy for CastleZoneSet

impl Debug for CastleZoneSet

impl Eq for CastleZoneSet

impl FromIterator<CastleZone> for CastleZoneSet

impl Hash for CastleZoneSet

impl PartialEq<CastleZoneSet> for CastleZoneSet

impl PartialOrd<CastleZoneSet> for CastleZoneSet

impl Reflectable for CastleZoneSet

impl StructuralEq for CastleZoneSet

impl StructuralPartialEq for CastleZoneSet

impl Sub<CastleZoneSet> for CastleZoneSet

type Output = CastleZoneSet

The resulting type after applying the - operator.

impl SubAssign<CastleZoneSet> for CastleZoneSet

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.