[][src]Enum adapton::catalog::collections::List

pub enum List<X> {
    Nil,
    Cons(X, Box<List<X>>),
    Tree(Box<Tree<X>>, Dir2Box<List<X>>),
    Name(NameBox<List<X>>),
    Art(Art<List<X>>),
}

Variants

Nil
Cons(X, Box<List<X>>)
Tree(Box<Tree<X>>, Dir2Box<List<X>>)
Name(NameBox<List<X>>)
Art(Art<List<X>>)

Trait Implementations

impl<X: Clone> Clone for List<X>[src]

impl<X: Debug> Debug for List<X>[src]

impl<X: Eq> Eq for List<X>[src]

impl<X: Hash> Hash for List<X>[src]

impl<X: 'static + Debug + Hash + PartialEq + Eq + Clone> ListElim<X> for List<X>[src]

impl<X: 'static + Debug + Hash + PartialEq + Eq + Clone> ListIntro<X> for List<X>[src]

impl<Dom: Debug + Hash + PartialEq + Eq + Clone + 'static, Cod: Debug + Hash + PartialEq + Eq + Clone + 'static> MapElim<Dom, Cod> for List<(Dom, Cod)>[src]

impl<Dom: Debug + Hash + PartialEq + Eq + Clone + 'static, Cod: Debug + Hash + PartialEq + Eq + Clone + 'static> MapIntro<Dom, Cod> for List<(Dom, Cod)>[src]

impl<X: PartialEq> PartialEq<List<X>> for List<X>[src]

impl<X> StructuralEq for List<X>[src]

impl<X> StructuralPartialEq for List<X>[src]

Auto Trait Implementations

impl<X> !RefUnwindSafe for List<X>

impl<X> !Send for List<X>

impl<X> !Sync for List<X>

impl<X> Unpin for List<X> where
    X: Unpin

impl<X> !UnwindSafe for List<X>

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> From<T> for T[src]

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

impl<Elm, Map> SetElim<Elm> for Map where
    Map: MapElim<Elm, ()>, 
[src]

impl<Elm, Map> SetIntro<Elm> for Map where
    Map: MapIntro<Elm, ()> + MapElim<Elm, ()>, 
[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.