Trait ScanError

Source
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)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§