Enum scryfall::card_searcher::GameParam[][src]

pub enum GameParam {
    Game(Game),
    InGame(Game),
}

A parameter that takes a game mode as it's value.

Variants

Game(Game)

Find specific prints available in different Magic game environments

InGame(Game)

Filter by a card’s availability in a game

Trait Implementations

impl Clone for GameParam[src]

impl Copy for GameParam[src]

impl Debug for GameParam[src]

impl<'de> Deserialize<'de> for GameParam[src]

impl Eq for GameParam[src]

impl Hash for GameParam[src]

impl Ord for GameParam[src]

impl Param for GameParam[src]

impl PartialEq<GameParam> for GameParam[src]

impl PartialOrd<GameParam> for GameParam[src]

impl Serialize for GameParam[src]

impl StructuralEq for GameParam[src]

impl StructuralPartialEq for GameParam[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.