SquareDelimited

Type Alias SquareDelimited 

Source
pub type SquareDelimited<'source, T> = Square<'source, Delimited<Comma<'source>, T>>;
Expand description

Type alias for a comma-separated list of values, surrounded by square brackets.

Aliased Type§

pub struct SquareDelimited<'source, T> {
    pub open: OpenSquare<'source>,
    pub value: Delimited<Comma<'source>, T>,
    pub close: CloseSquare<'source>,
    /* private fields */
}

Fields§

§open: OpenSquare<'source>

The opening token that was parsed.

§value: Delimited<Comma<'source>, T>

The value.

§close: CloseSquare<'source>

The closing token that was parsed.