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

pub struct Colours(_);

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

Methods

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]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Ord for Colours[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

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

impl PartialOrd<Colours> for Colours[src]

impl PartialEq<Colours> for Colours[src]

impl Copy for Colours[src]

impl Eq for Colours[src]

impl Debug for Colours[src]

impl Display for Colours[src]

impl Hash for Colours[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Serialize for Colours[src]

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

Auto Trait Implementations

impl Unpin for Colours

impl Sync for Colours

impl Send for Colours

impl UnwindSafe for Colours

impl RefUnwindSafe for Colours

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err