Enum coalesce::Coalesce1 [] [src]

pub enum Coalesce1<A> {
    A(A),
}

Variants

A

Methods

impl<A> Coalesce1<A>

fn as_ref(&self) -> Coalesce1<&A>

fn as_mut(&mut self) -> Coalesce1<&mut A>

Trait Implementations

Derived Implementations

impl<A: Ord> Ord for Coalesce1<A> where A: Ord

fn cmp(&self, __arg_0: &Coalesce1<A>) -> Ordering

impl<A: PartialOrd> PartialOrd for Coalesce1<A> where A: PartialOrd

fn partial_cmp(&self, __arg_0: &Coalesce1<A>) -> Option<Ordering>

fn lt(&self, __arg_0: &Coalesce1<A>) -> bool

fn le(&self, __arg_0: &Coalesce1<A>) -> bool

fn gt(&self, __arg_0: &Coalesce1<A>) -> bool

fn ge(&self, __arg_0: &Coalesce1<A>) -> bool

impl<A: Eq> Eq for Coalesce1<A> where A: Eq

impl<A: PartialEq> PartialEq for Coalesce1<A> where A: PartialEq

fn eq(&self, __arg_0: &Coalesce1<A>) -> bool

fn ne(&self, __arg_0: &Coalesce1<A>) -> bool

impl<A: Hash> Hash for Coalesce1<A> where A: Hash

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

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

impl<A: Debug> Debug for Coalesce1<A> where A: Debug

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl<A: Clone> Clone for Coalesce1<A> where A: Clone

fn clone(&self) -> Coalesce1<A>

fn clone_from(&mut self, source: &Self)

impl<A: Copy> Copy for Coalesce1<A> where A: Copy