Struct nom::error::Error [−][src]
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]
Trait Implementations
impl<I> ContextError<I> for Error<I>
[src]
fn add_context(_input: I, _ctx: &'static str, other: Self) -> Self
[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> 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]
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]
fn from_error_kind(input: I, kind: ErrorKind) -> Self
[src]
fn append(_: I, _: ErrorKind, other: Self) -> Self
[src]
fn from_char(input: I, _: char) -> Self
[src]
fn or(self, other: Self) -> Self
[src]
impl<I: PartialEq> PartialEq<Error<I>> for Error<I>
[src]
impl<I> StructuralPartialEq for Error<I>
[src]
Auto Trait Implementations
impl<I> Send for Error<I> where
I: Send,
I: Send,
impl<I> Sync for Error<I> where
I: Sync,
I: Sync,
impl<I> Unpin for Error<I> where
I: Unpin,
I: Unpin,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,