pub trait ScanError: Error + From<Error> + Sized {
    // Required method
    fn position(&mut self, line: u64, column: usize);
}

Required Methods§

source

fn position(&mut self, line: u64, column: usize)

Object Safety§

This trait is not object safe.

Implementors§