Enum scryfall::card_searcher::NumericParam[][src]

pub enum NumericParam {
    CMC(ComparisonExprusize),
    CollectorNumber(usize),
    TixPrice(ComparisonExprusize),
    EurPrice(ComparisonExprusize),
    UsdPrice(ComparisonExprusize),
    Prints(ComparisonExprusize),
    Sets(ComparisonExprusize),
    PaperPrints(ComparisonExprusize),
    PaperSets(ComparisonExprusize),
}

A parameter that takes a number as it's value.

Variants

Find cards of a specific converted mana cost

CollectorNumber(usize)

Find cards by collector number within a set. Combine this with StringParam::Set to find specific card editions.

TixPrice(ComparisonExprusize)

Find cards by price in tix.

EurPrice(ComparisonExprusize)

Find cards by price in euros.

UsdPrice(ComparisonExprusize)

Find cards by price in usd.

Find cards by the number of times a card has been printed.

Find by number of sets a card has been in.

PaperPrints(ComparisonExprusize)

Find cards by the number of times a card has been printed in paper.

PaperSets(ComparisonExprusize)

Find by number of paper sets a card has been in.

Trait Implementations

impl Clone for NumericParam[src]

impl Copy for NumericParam[src]

impl Debug for NumericParam[src]

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

impl Eq for NumericParam[src]

impl Hash for NumericParam[src]

impl Ord for NumericParam[src]

impl Param for NumericParam[src]

impl PartialEq<NumericParam> for NumericParam[src]

impl PartialOrd<NumericParam> for NumericParam[src]

impl Serialize for NumericParam[src]

impl StructuralEq for NumericParam[src]

impl StructuralPartialEq for NumericParam[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.