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),
}

An image info result.

Variants

Methods

impl ImageInfoResult
[src]

[src]

Trait Implementations

impl Debug for ImageInfoResult
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for ImageInfoResult
[src]

[src]

Formats the value using the given formatter. Read more

impl From<ImageInfoResult> for String
[src]

[src]

Performs the conversion.

Auto Trait Implementations