Trait AnyDelimiter

pub trait AnyDelimiter: Sealed

Extensions to the ParseStream API to support manipulating invisible delimiters the same as if they were visible.

Required Methods

fn parse_any_delimiter(&self) -> Result<(Delimiter, DelimSpan, ParseBuffer<'_>)>

Returns the delimiter, the span of the delimiter token, and the nested contents for further parsing.

Implementors