Enum coalesce::Coalesce3 [] [src]

pub enum Coalesce3<A, B, C> {
    A(A),
    B(B),
    C(C),
}

Variants

Methods

impl<A, B, C> Coalesce3<A, B, C>
[src]

Trait Implementations

impl<A: Copy, B: Copy, C: Copy> Copy for Coalesce3<A, B, C>
[src]

impl<A: Clone, B: Clone, C: Clone> Clone for Coalesce3<A, B, C>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<A: Debug, B: Debug, C: Debug> Debug for Coalesce3<A, B, C>
[src]

Formats the value using the given formatter.

impl<A: Hash, B: Hash, C: Hash> Hash for Coalesce3<A, B, C>
[src]

Feeds this value into the given [Hasher]. Read more

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

impl<A: PartialEq, B: PartialEq, C: PartialEq> PartialEq for Coalesce3<A, B, C>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<A: Eq, B: Eq, C: Eq> Eq for Coalesce3<A, B, C>
[src]

impl<A: PartialOrd, B: PartialOrd, C: PartialOrd> PartialOrd for Coalesce3<A, B, C>
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<A: Ord, B: Ord, C: Ord> Ord for Coalesce3<A, B, C>
[src]

This method returns an Ordering between self and other. Read more