Skip to main content

ZByteIoError

Enum ZByteIoError 

Source
pub enum ZByteIoError {
    TryFromIntError(TryFromIntError),
    NotEnoughBytes(usize, usize),
    NotEnoughBuffer(usize, usize),
    Generic(&'static str),
    SeekError(&'static str),
    SeekErrorOwned(String),
}

Variants§

§

TryFromIntError(TryFromIntError)

An error converting from one type to another

§

NotEnoughBytes(usize, usize)

Not enough bytes to satisfy a read

§

NotEnoughBuffer(usize, usize)

The output buffer is too small to write the bytes

§

Generic(&'static str)

An error that may occur randomly

§

SeekError(&'static str)

An error that occurred during a seek operation

§

SeekErrorOwned(String)

An error that occurred during a seek operation

Implementations§

Source§

impl ZByteIoError

Source

pub fn is_recoverable_eof(&self) -> bool

Returns true when this error indicates the reader ran out of data, as opposed to a format or data-corruption error.

Retry contract: on NotEnoughBytes, the stream position is already rewound to where the failed read began, so the caller can append more data and retry the same operation without repositioning.

Trait Implementations§

Source§

impl Debug for ZByteIoError

Source§

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

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

impl From<&'static str> for ZByteIoError

Source§

fn from(value: &'static str) -> Self

Converts to this type from the input type.
Source§

impl From<TryFromIntError> for ZByteIoError

Source§

fn from(value: TryFromIntError) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

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

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.