Struct scryfall::card::color::Colours[][src]

pub struct Colours(_);

Definition of a cards colors. This can be used to in conjunction with the search builder as a ColourParam.

Implementations

impl Colours[src]

pub fn multicolored() -> Self[src]

Creates an instance representing a multicolored card without specifying it's colors.

pub fn colorless() -> Self[src]

Creates an instance representing a colorless card.

pub fn is(self, color: Colour) -> bool[src]

Checks to see if a card is a certain color.

Note: Multicolored cards are may not be any particular color.

pub fn is_multicolored(self) -> bool[src]

Checks if a card is multicolored. This only works for instances created by Colours::multicolored.

pub fn is_colorless(self) -> bool[src]

Checks if a card is colorless.

Trait Implementations

impl Clone for Colours[src]

impl Copy for Colours[src]

impl Debug for Colours[src]

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

impl Display for Colours[src]

impl Eq for Colours[src]

impl From<&'_ [Colour]> for Colours[src]

impl Hash for Colours[src]

impl Ord for Colours[src]

impl PartialEq<Colours> for Colours[src]

impl PartialOrd<Colours> for Colours[src]

impl Serialize for Colours[src]

impl StructuralEq for Colours[src]

impl StructuralPartialEq for Colours[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> ToString for T where
    T: Display + ?Sized
[src]

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.