Enum ocl_core::types::enums::KernelInfoResult [] [src]

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

A kernel info result.

Variants

FunctionName(String)NumArgs(u32)ReferenceCount(u32)Context(Context)Program(Program)Attributes(String)Error(Box<OclError>)

Methods

impl KernelInfoResult
[src]

Trait Implementations

impl Debug for KernelInfoResult
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Display for KernelInfoResult
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Into<String> for KernelInfoResult
[src]

fn into(self) -> String

Performs the conversion.

impl From<OclError> for KernelInfoResult
[src]

fn from(err: OclError) -> KernelInfoResult

Performs the conversion.

impl Error for KernelInfoResult
[src]

fn description(&self) -> &str

A short description of the error. Read more

fn cause(&self) -> Option<&Error>
1.0.0

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