Enum ocl_core::types::enums::ImageInfoResult [] [src]

pub enum ImageInfoResult {
    Format(ImageFormatParseResult),
    ElementSize(usize),
    RowPitch(usize),
    SlicePitch(usize),
    Width(usize),
    Height(usize),
    Depth(usize),
    ArraySize(usize),
    Buffer(Option<Mem>),
    NumMipLevels(u32),
    NumSamples(u32),
    Error(Box<OclError>),
}

An image info result.

Variants

Methods

impl ImageInfoResult
[src]

Trait Implementations

impl Debug for ImageInfoResult
[src]

Formats the value using the given formatter.

impl Display for ImageInfoResult
[src]

Formats the value using the given formatter. Read more

impl From<OclError> for ImageInfoResult
[src]

Performs the conversion.

impl Error for ImageInfoResult
[src]

A short description of the error. Read more

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