Enum ocl_core::util::UtilError[][src]

pub enum UtilError {
    BytesTo {
        src: usize,
        dst: usize,
    },
    BytesInto {
        src: usize,
        dst: usize,
    },
    BytesIntoVec {
        src: usize,
        dst: usize,
    },
    BytesToVec {
        src: usize,
        dst: usize,
    },
    BytesIntoString(FromUtf8Error),
}

An error caused by a utility function.

Variants

Fields of BytesTo

Fields of BytesInto

Fields of BytesIntoVec

Fields of BytesToVec

Trait Implementations

impl From<UtilError> for Error
[src]

Performs the conversion.

impl Debug for UtilError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for UtilError

impl Sync for UtilError