[][src]Struct spaik::perr::ParseErr

pub struct ParseErr {
    pub line: u32,
    pub col: u32,
    pub rs_line: u32,
    pub rs_file: &'static str,
    pub msg: String,
}

Fields

line: u32col: u32rs_line: u32rs_file: &'static strmsg: String

Trait Implementations

impl Debug for ParseErr[src]

impl Display for ParseErr[src]

impl From<ParseErr> for Error[src]

impl PartialEq<ParseErr> for ParseErr[src]

impl StructuralPartialEq for ParseErr[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.