[][src]Enum arctk::err::Error

pub enum Error {
    Text(String),
    Parallel,
    Format(Error),
    EnvVar(VarError),
    LoadFile(Error),
    ParseInt(ParseIntError),
    ParseFloat(ParseFloatError),
    ParseHex(FromHexError),
    ReadJson(Error),
    WriteJson(Error),
    InvalidShape(ShapeError),
    MinMax(MinMaxError),
}

Error enumeration.

Variants

Text(String)

Description error.

Parallel

Parallelisation poison.

Format(Error)

Formatting error.

EnvVar(VarError)

Missing environment variable error.

LoadFile(Error)

File loading error.

ParseInt(ParseIntError)

Integer parsing error.

ParseFloat(ParseFloatError)

Float parsing error.

ParseHex(FromHexError)

Hexadecimal parsing error.

ReadJson(Error)

Json reading error.

WriteJson(Error)

Json writing error.

InvalidShape(ShapeError)

Shape error.

MinMax(MinMaxError)

Min/max error.

Trait Implementations

impl Debug for Error[src]

impl<'_> From<&'_ str> for Error[src]

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl From<Error> for Error[src]

impl From<FromHexError> for Error[src]

impl From<MinMaxError> for Error[src]

impl From<ParseFloatError> for Error[src]

impl From<ParseIntError> for Error[src]

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

impl From<ShapeError> for Error[src]

impl From<VarError> for Error[src]

Auto Trait Implementations

impl !RefUnwindSafe for Error

impl Send for Error

impl Sync for Error

impl Unpin for Error

impl !UnwindSafe for Error

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

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

impl<T> Background for T[src]

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

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

impl<T, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[src]

impl<T> Foreground for T[src]

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

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

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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<V, T> VZip<V> for T where
    V: MultiLane<T>,