DelimiterExt

Trait DelimiterExt 

Source
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

Required Methods§

Source

fn is_parenthesis(&self) -> bool

Source

fn is_brace(&self) -> bool

Source

fn is_bracket(&self) -> bool

Source

fn is_none(&self) -> bool

Implementors§