[][src]Enum heim_common::ErrorKind

pub enum ErrorKind {
    Incompatible,
    UnknownValue(&'static str),
    FromNul(NulError),
    FromFfiString(IntoStringError),
    Io(Error),
    Parse,
    ParseInt(ParseIntError),
    ParseFloat(ParseFloatError),
    ParseString(ParseError),
    FromUtf8(FromUtf8Error),
    Other(Box<dyn Error + Send + 'static>),
}

Variants

Incompatible

Unable to call system function because program is incompatible with OS used

UnknownValue(&'static str)

Unable to determine the requested value

FromNul(NulError)FromFfiString(IntoStringError)Io(Error)Parse

Generic parse error. If applicable, try to use more specific ErrorKind

ParseInt(ParseIntError)ParseFloat(ParseFloatError)ParseString(ParseError)FromUtf8(FromUtf8Error)Other(Box<dyn Error + Send + 'static>)

Trait Implementations

impl Debug for ErrorKind[src]

Auto Trait Implementations

impl Send for ErrorKind

impl !Sync for ErrorKind

Blanket Implementations

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

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

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

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

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

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

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