[][src]Enum nbs::error::NbsError

pub enum NbsError {
    InvalidTargetFormat,
    InvalidString(FromUtf8Error),
    IoError(Error),
}

Variants

InvalidTargetFormat

This error occures when the format to encode with expected some information that was not given

InvalidString(FromUtf8Error)

This error occurs when decoding a string thats not utf-8

IoError(Error)

This error occures when an io operation fails

Trait Implementations

impl Debug for NbsError[src]

impl Display for NbsError[src]

impl Error for NbsError[src]

impl From<Error> for NbsError[src]

impl From<FromUtf8Error> for NbsError[src]

Auto Trait Implementations

impl !RefUnwindSafe for NbsError

impl Send for NbsError

impl Sync for NbsError

impl Unpin for NbsError

impl !UnwindSafe for NbsError

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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 = Infallible

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.