Enum coaster::framework::Error [] [src]

pub enum Error {
    OpenCL(OpenCLError),
    Cuda(CudaError),
    Implementation(String),
}

Defines a generic set of Framework Errors.

Variants

Failures related to the OpenCL framework implementation.

Failures related to the Cuda framework implementation.

Failure related to the Coaster implementation of a specific Framework.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

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<OpenCLError> for Error
[src]

Performs the conversion.

impl From<CudaError> for Error
[src]

Performs the conversion.