pub struct Error<Size = u8>(/* private fields */);
Expand description

The Error type contains an err::Kind and an index within the source string.

Implementations§

source§

impl<Size> Error<Size>
where Size: Copy,

source

pub fn index(&self) -> Size

The byte index within the source string where the error occurred.

source

pub fn kind(&self) -> Kind

the kind of error

Trait Implementations§

source§

impl<Int, Size> Add<Int> for Error<Size>
where Size: Add<Output = Size>, Int: Into<Size>,

§

type Output = Error<Size>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Int) -> Self

Performs the + operation. Read more
source§

impl<Size: Clone> Clone for Error<Size>

source§

fn clone(&self) -> Error<Size>

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<Size: Debug> Debug for Error<Size>

source§

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

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

impl<T, Size> From<Error<Size>> for Result<T, Error<Size>>

source§

fn from(value: Error<Size>) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error<u16>

source§

fn from(e: Error<u8>) -> Self

Converts to this type from the input type.
source§

impl<Size: Copy> Copy for Error<Size>

Auto Trait Implementations§

§

impl<Size> RefUnwindSafe for Error<Size>
where Size: RefUnwindSafe,

§

impl<Size> Send for Error<Size>
where Size: Send,

§

impl<Size> Sync for Error<Size>
where Size: Sync,

§

impl<Size> Unpin for Error<Size>
where Size: Unpin,

§

impl<Size> UnwindSafe for Error<Size>
where Size: 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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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.