Enum ocl::enums::ImageInfoResult [] [src]

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

An image info result.

Variants

Methods

impl ImageInfoResult

Trait Implementations

impl From<Error> for ImageInfoResult

Performs the conversion.

impl Error for ImageInfoResult

impl Debug for ImageInfoResult

Formats the value using the given formatter.

impl Display for ImageInfoResult

Formats the value using the given formatter.

impl Into<String> for ImageInfoResult

Performs the conversion.