rustmax::nom

Enum Err

Source
pub enum Err<Failure, Error = Failure> {
    Incomplete(Needed),
    Error(Error),
    Failure(Failure),
}
Expand description

The Err enum indicates the parser was not successful

It has three cases:

  • Incomplete indicates that more data is needed to decide. The Needed enum can contain how many additional bytes are necessary. If you are sure your parser is working on full data, you can wrap your parser with the complete combinator to transform that case in Error
  • Error means some parser did not succeed, but another one might (as an example, when testing different branches of an alt combinator)
  • Failure indicates an unrecoverable error. For example, when a prefix has been recognised and the next parser has been confirmed, if that parser fails, then the entire process fails; there are no more parsers to try.

Distinguishing Failure this from Error is only relevant inside the parser’s code. For external consumers, both mean that parsing failed.

See also: Finish.

Variants§

§

Incomplete(Needed)

There was not enough data

§

Error(Error)

The parser had an error (recoverable)

§

Failure(Failure)

The parser had an unrecoverable error: we got to the right branch and we know other branches won’t work, so backtrack as fast as possible

Implementations§

Source§

impl<E> Err<E>

Source

pub fn is_incomplete(&self) -> bool

Tests if the result is Incomplete

Source

pub fn map<E2, F>(self, f: F) -> Err<E2>
where F: FnOnce(E) -> E2,

Applies the given function to the inner error

Source

pub fn convert<F>(e: Err<F>) -> Err<E>
where E: From<F>,

Automatically converts between errors if the underlying type supports it

Source§

impl<T> Err<(T, ErrorKind)>

Source

pub fn map_input<U, F>(self, f: F) -> Err<(U, ErrorKind)>
where F: FnOnce(T) -> U,

Maps Err<(T, ErrorKind)> to Err<(U, ErrorKind)> with the given F: T -> U

Source§

impl<T> Err<Error<T>>

Source

pub fn map_input<U, F>(self, f: F) -> Err<Error<U>>
where F: FnOnce(T) -> U,

Maps Err<error::Error<T>> to Err<error::Error<U>> with the given F: T -> U

Source§

impl Err<(&[u8], ErrorKind)>

Source

pub fn to_owned(self) -> Err<(Vec<u8>, ErrorKind)>

Obtaining ownership

Source§

impl Err<(&str, ErrorKind)>

Source

pub fn to_owned(self) -> Err<(String, ErrorKind)>

Obtaining ownership

Source§

impl Err<Error<&[u8]>>

Source

pub fn to_owned(self) -> Err<Error<Vec<u8>>>

Obtaining ownership

Source§

impl Err<Error<&str>>

Source

pub fn to_owned(self) -> Err<Error<String>>

Obtaining ownership

Trait Implementations§

Source§

impl<Failure, Error> Clone for Err<Failure, Error>
where Failure: Clone, Error: Clone,

Source§

fn clone(&self) -> Err<Failure, Error>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<Failure, Error> Debug for Err<Failure, Error>
where Failure: Debug, Error: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<E> Display for Err<E>
where E: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<E> Error for Err<E>
where E: Debug,

Source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl<Failure, Error> PartialEq for Err<Failure, Error>
where Failure: PartialEq, Error: PartialEq,

Source§

fn eq(&self, other: &Err<Failure, Error>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<E> Eq for Err<E>
where E: Eq,

Source§

impl<Failure, Error> StructuralPartialEq for Err<Failure, Error>

Auto Trait Implementations§

§

impl<Failure, Error> Freeze for Err<Failure, Error>
where Error: Freeze, Failure: Freeze,

§

impl<Failure, Error> RefUnwindSafe for Err<Failure, Error>
where Error: RefUnwindSafe, Failure: RefUnwindSafe,

§

impl<Failure, Error> Send for Err<Failure, Error>
where Error: Send, Failure: Send,

§

impl<Failure, Error> Sync for Err<Failure, Error>
where Error: Sync, Failure: Sync,

§

impl<Failure, Error> Unpin for Err<Failure, Error>
where Error: Unpin, Failure: Unpin,

§

impl<Failure, Error> UnwindSafe for Err<Failure, Error>
where Error: UnwindSafe, Failure: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FromRef<T> for T
where T: Clone,

Source§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize = _

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> QuickClone<T> for T
where T: Clone,

Source§

fn C(&self) -> T

Source§

impl<T> QuickToOwned for T
where T: ToOwned,

Source§

type Owned = <T as ToOwned>::Owned

Source§

fn O(&self) -> <T as QuickToOwned>::Owned

Source§

impl<T> QuickToString for T
where T: ToString + ?Sized,

Source§

fn S(&self) -> String

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T