[][src]Struct nom::error::Error

pub struct Error<I> {
    pub input: I,
    pub code: ErrorKind,
}

default error type, only contains the error' location and code

Fields

input: I

position of the error in the input data

code: ErrorKind

nom error code

Implementations

impl<I> Error<I>[src]

pub fn new(input: I, code: ErrorKind) -> Error<I>[src]

creates a new basic error

Trait Implementations

impl<I> ContextError<I> for Error<I>[src]

impl<I: Debug> Debug for Error<I>[src]

impl<I: Display> Display for Error<I>[src]

The Display implementation allows the std::error::Error implementation

impl<I: Debug + Display> Error for Error<I>[src]

impl<I> ErrorConvert<Error<(I, usize)>> for Error<I>[src]

impl<I> ErrorConvert<Error<I>> for Error<(I, usize)>[src]

impl<I, E> FromExternalError<I, E> for Error<I>[src]

pub fn from_external_error(input: I, kind: ErrorKind, _e: E) -> Self[src]

Create a new error from an input position and an external error

impl<I> ParseError<I> for Error<I>[src]

impl<I: PartialEq> PartialEq<Error<I>> for Error<I>[src]

impl<I> StructuralPartialEq for Error<I>[src]

Auto Trait Implementations

impl<I> RefUnwindSafe for Error<I> where
    I: RefUnwindSafe

impl<I> Send for Error<I> where
    I: Send

impl<I> Sync for Error<I> where
    I: Sync

impl<I> Unpin for Error<I> where
    I: Unpin

impl<I> UnwindSafe for Error<I> where
    I: UnwindSafe

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> Conv for T

impl<T> Conv for T

impl<T> FmtForward for T

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

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

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

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

impl<T> TryConv for T

impl<T> TryConv for T

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.