[][src]Struct wood::DewoodifyError

pub struct DewoodifyError {
    pub line: isize,
    pub column: isize,
    pub msg: String,
    pub cause: Option<Box<dyn Error>>,
}

Fields

line: isizecolumn: isizemsg: Stringcause: Option<Box<dyn Error>>

Methods

impl DewoodifyError[src]

pub fn new(source: &Wood, msg: String) -> Self[src]

pub fn new_with_cause(
    source: &Wood,
    msg: String,
    cause: Option<Box<dyn Error>>
) -> Self
[src]

Trait Implementations

impl Display for DewoodifyError[src]

impl Debug for DewoodifyError[src]

impl Error for DewoodifyError[src]

fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0
[src]

The lower-level source of this error, if any. Read more

fn type_id(&self) -> TypeId where
    Self: 'static, 
1.34.0
[src]

Gets the TypeId of self

Auto Trait Implementations

Blanket Implementations

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

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.

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

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

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