pub trait DelimiterExt {
// Required methods
fn is_parenthesis(&self) -> bool;
fn is_brace(&self) -> bool;
fn is_bracket(&self) -> bool;
fn is_none(&self) -> bool;
}Expand description
This is an extension trait for the following impl:
ⓘ
#[extension(pub trait DelimiterExt)]
impl for Delimiter