Enum collenchyma::device::Error [] [src]

pub enum Error {
    Native(NativeError),
    OpenCL(OpenCLError),
    Cuda(CudaError),
}

Defines a generic set of Memory Errors.

Variants

Failures related to the Native framework implementation.

Failures related to the OpenCL framework implementation.

Failures related to the Cuda framework implementation.

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

Performs the conversion.

impl From<OpenCLError> for Error
[src]

Performs the conversion.

impl From<CudaError> for Error
[src]

Performs the conversion.