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

pub enum EventInfoResult {
    CommandQueue(CommandQueue),
    CommandType(CommandType),
    ReferenceCount(u32),
    CommandExecutionStatus(CommandExecutionStatus),
    Context(Context),
    Error(Box<OclError>),
}

An event info result.

Variants

CommandQueue(CommandQueue)CommandType(CommandType)ReferenceCount(u32)CommandExecutionStatus(CommandExecutionStatus)Context(Context)Error(Box<OclError>)

Methods

impl EventInfoResult
[src]

fn from_bytes(request: EventInfo, result: OclResult<Vec<u8>>) -> EventInfoResult

Trait Implementations

impl Debug for EventInfoResult
[src]

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

Formats the value using the given formatter.

impl Display for EventInfoResult
[src]

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

Formats the value using the given formatter.

impl Into<String> for EventInfoResult
[src]

fn into(self) -> String

Performs the conversion.

impl From<OclError> for EventInfoResult
[src]

fn from(err: OclError) -> EventInfoResult

Performs the conversion.

impl Error for EventInfoResult
[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