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

pub enum ContextInfoResult {
    ReferenceCount(u32),
    Devices(Vec<DeviceId>),
    Properties(ContextProperties),
    NumDevices(u32),
}

A context info result.

[INCOMPLETE][FIXME]: Figure out what to do with the properties variant.

Variants

Methods

impl ContextInfoResult
[src]

Trait Implementations

impl Debug for ContextInfoResult
[src]

Formats the value using the given formatter. Read more

impl Display for ContextInfoResult
[src]

Formats the value using the given formatter. Read more

impl From<ContextInfoResult> for String
[src]

Performs the conversion.

Auto Trait Implementations