Trait syn::parse::discouraged::AnyDelimiter
source · 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§
sourcefn parse_any_delimiter(&self) -> Result<(Delimiter, DelimSpan, ParseBuffer<'_>)>
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.