Enum ocl_core::types::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<OclError>),
}

A program info result.

Variants

Methods

impl ProgramInfoResult
[src]

Trait Implementations

impl Debug for ProgramInfoResult
[src]

Formats the value using the given formatter.

impl Display for ProgramInfoResult
[src]

Formats the value using the given formatter. Read more

impl From<OclError> for ProgramInfoResult
[src]

Performs the conversion.

impl Error for ProgramInfoResult
[src]

A short description of the error. Read more

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