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

pub enum CommandQueueInfoResult {
    Context(Context),
    Device(DeviceId),
    ReferenceCount(u32),
    Properties(CommandQueueProperties),
    Error(Box<OclError>),
}

A command queue info result.

Variants

Context(Context)Device(DeviceId)ReferenceCount(u32)Properties(CommandQueueProperties)Error(Box<OclError>)

Methods

impl CommandQueueInfoResult
[src]

Trait Implementations

impl Debug for CommandQueueInfoResult
[src]

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

Formats the value using the given formatter.

impl Display for CommandQueueInfoResult
[src]

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

Formats the value using the given formatter.

impl Into<String> for CommandQueueInfoResult
[src]

fn into(self) -> String

Performs the conversion.

impl From<OclError> for CommandQueueInfoResult
[src]

fn from(err: OclError) -> CommandQueueInfoResult

Performs the conversion.

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