Trait sqlite3_parser::lexer::ScanError

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

Error with position

Required Methods§

source

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

Update the position where the error occurs

Object Safety§

This trait is not object safe.

Implementors§