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

A program info result.

Variants

Contains a Vec containing the DeviceId associated with each device.

Contains a Vec containing the size of the binary associated with each device.

Contains a Vec containing the bytes of the binary associated with each device.

Methods

impl ProgramInfoResult
[src]

Trait Implementations

impl Debug for ProgramInfoResult
[src]

Formats the value using the given formatter. Read more

impl Display for ProgramInfoResult
[src]

Formats the value using the given formatter. Read more

impl From<ProgramInfoResult> for String
[src]

Performs the conversion.

Auto Trait Implementations