Enum ocl::enums::KernelInfoResult [] [src]

pub enum KernelInfoResult {
    FunctionName(String),
    NumArgs(u32),
    ReferenceCount(u32),
    Context(Context),
    Program(Program),
    Attributes(String),
    Error(Box<Error>),
}

A kernel info result.

Variants

Methods

impl KernelInfoResult

Trait Implementations

impl From<Error> for KernelInfoResult

Performs the conversion.

impl Error for KernelInfoResult

impl Debug for KernelInfoResult

Formats the value using the given formatter.

impl Display for KernelInfoResult

Formats the value using the given formatter.

impl Into<String> for KernelInfoResult

Performs the conversion.