Enum erl_pp::types::Tail [] [src]

pub enum Tail<T> {
    Null,
    Cons {
        _comma: SymbolToken,
        head: T,
        tail: Box<Tail<T>>,
    },
}

Tail part of a linked list (cons cell).

Variants

Fields of Cons

Trait Implementations

impl<T: Debug> Debug for Tail<T>
[src]

Formats the value using the given formatter.

impl<T: Clone> Clone for Tail<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Display> Display for Tail<T>
[src]

Formats the value using the given formatter. Read more