Enum coaster::plugin::Error [] [src]

pub enum Error {
    SharedTensor(Error),
    Operation(&'static str),
    Plugin(&'static str),
}

Defines a high-level Plugin Error.

Variants

Failure related to SharedTensor: use of uninitialized memory, synchronization error or memory allocation failure.

Failure at the execution of the Operation.

Failure at the Plugin.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Copy for Error
[src]

impl Clone for Error
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl Error for Error
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl From<Error> for Error
[src]

Performs the conversion.