Struct kailua_syntax::ast::Seq [] [src]

pub struct Seq<Head, Tail = Head> {
    pub head: Vec<Head>,
    pub tail: Option<Tail>,
}

A sequence of items, optionally having a "tail" item for the remainder (e.g. varargs).

Fields

Methods

impl<Head, Tail> Seq<Head, Tail>
[src]

Trait Implementations

impl<Head: Clone, Tail: Clone> Clone for Seq<Head, Tail>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<Head: PartialEq, Tail: PartialEq> PartialEq for Seq<Head, Tail>
[src]

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

This method tests for !=.

impl<Head: Debug, Tail: Debug> Debug for Seq<Head, Tail>
[src]

Formats the value using the given formatter.