pub trait AnyDelimiter {
    fn parse_any_delimiter(
        &self
    ) -> Result<(Delimiter, DelimSpan, ParseBuffer<'_>)>; }
Expand description

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

Required Methods

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

Implementors