Enum ocl::enums::ProgramInfoResult [] [src]

pub enum ProgramInfoResult {
    ReferenceCount(u32),
    Context(Context),
    NumDevices(u32),
    Devices(Vec<DeviceId>),
    Source(String),
    BinarySizes(Vec<usize>),
    Binaries(Vec<Vec<u8>>),
    NumKernels(usize),
    KernelNames(String),
    Error(Box<Error>),
}

A program info result.

Variants

Methods

impl ProgramInfoResult
[src]

Trait Implementations

impl Display for ProgramInfoResult
[src]

Formats the value using the given formatter. Read more

impl Error for ProgramInfoResult
[src]

A short description of the error. Read more

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

impl Debug for ProgramInfoResult
[src]

Formats the value using the given formatter.

impl From<Error> for ProgramInfoResult
[src]

Performs the conversion.