Struct combine::primitives::Tracked [] [src]

pub struct Tracked<E> {
    pub error: E,
    // some fields omitted
}

Error wrapper which lets parsers track which parser in a sequence of sub-parsers has emitted the error. Tracked::from can be used to construct this and it should otherwise be ignored outside of combine.

Fields

The error returned

Trait Implementations

impl<E: Clone> Clone for Tracked<E>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<E: PartialEq> PartialEq for Tracked<E>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<E: Debug> Debug for Tracked<E>
[src]

[src]

Formats the value using the given formatter.

impl<E: Copy> Copy for Tracked<E>
[src]

impl<E> From<E> for Tracked<E>
[src]

[src]

Performs the conversion.