[][src]Enum whiteread::stream::Error

pub enum Error {
    TooShort(Progress),
    Leftovers,
    ParseError,
    IoError(Error),
}

Error which can occur while parsing FromStream object.

It's convertible into io::Error, so it composes well with other reading functions.

Examples

if let Err(TooShort(Nothing)) = parse_string::<(u8, u16)>("") {} else { panic!(); }
if let Err(TooShort(Partial)) = parse_string::<(u8, u16)>("1") {} else { panic!(); }
if let Err(Leftovers) = parse_string::<char>("x y z") {} else { panic!(); }
if let Err(ParseError) = parse_string::<i32>("seven") {} else { panic!(); }

Variants

TooShort(Progress)

There was not enough input to parse a value.

Leftovers

Excessive input was provided.

ParseError

Parse error occured (data was in invalid format).

IoError(Error)

IO Error occured.

Methods

impl Error[src]

pub fn is_too_short(&self) -> bool[src]

Checks if error variant is TooShort

pub fn is_nothing(&self) -> bool[src]

Checks if error variant is Nothing flavour of TooShort

pub fn is_partial(&self) -> bool[src]

Checks if error variant is Partial flavour of TooShort

pub fn is_leftovers(&self) -> bool[src]

Checks if error variant is Leftovers

pub fn is_parse_error(&self) -> bool[src]

Checks if error variant is ParseError

pub fn is_io_error(&self) -> bool[src]

Checks if error variant is IoError

Trait Implementations

impl AsRef<Error> for Error[src]

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl Debug for Error[src]

impl Display for Error[src]

impl Error for Error[src]

Auto Trait Implementations

impl Send for Error

impl Sync for Error

impl Unpin for Error

impl !UnwindSafe for Error

impl !RefUnwindSafe for Error

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]