[][src]Enum klondike_lib::model::area::AreaId

pub enum AreaId {
    Stock,
    Talon,
    Foundation(Suit),
    Tableaux(u8),
}

Variants

Stock
Talon
Foundation(Suit)
Tableaux(u8)

Trait Implementations

impl Clone for AreaId[src]

impl Copy for AreaId[src]

impl Debug for AreaId[src]

impl Eq for AreaId[src]

impl Hash for AreaId[src]

impl Ord for AreaId[src]

impl PartialEq<AreaId> for AreaId[src]

impl PartialOrd<AreaId> for AreaId[src]

impl StructuralEq for AreaId[src]

impl StructuralPartialEq for AreaId[src]

Auto Trait Implementations

impl RefUnwindSafe for AreaId

impl Send for AreaId

impl Sync for AreaId

impl Unpin for AreaId

impl UnwindSafe for AreaId

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,