pub trait InlineRule: 'static {
    const MARKER: char;

    fn run(state: &mut InlineState<'_, '_>, silent: bool) -> bool;
}
Expand description

Each member of inline rule chain must implement this trait

Required Associated Constants

Required Methods

Implementors