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

    fn run(state: &mut InlineState<'_, '_>) -> Option<(Node, usize)>;

    fn check(state: &mut InlineState<'_, '_>) -> Option<usize> { ... }
}
Expand description

Each member of inline rule chain must implement this trait

Required Associated Constants

Required Methods

Provided Methods

Implementors