Enum erl_parse::cst::commons::parts::ConsCellTail [] [src]

pub enum ConsCellTail<T> {
    Proper {
        _comma: SymbolToken,
        item: T,
        tail: Option<Box<ConsCellTail<T>>>,
    },
    Improper {
        _bar: SymbolToken,
        item: T,
    },
}

Variants

Fields of Proper

Fields of Improper

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: Parse> Parse for ConsCellTail<T>
[src]

[src]

[src]

impl<T: PositionRange> PositionRange for ConsCellTail<T>
[src]

[src]

Returns the (inclusive) start position of this.

[src]

Returns the (exclusive) end position of this.