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

pub enum PlatformInfoResult {
    Profile(String),
    Version(String),
    Name(String),
    Vendor(String),
    Extensions(String),
    Error(Box<OclError>),
}

Platform info result.

Variants

Profile(String)Version(String)Name(String)Vendor(String)Extensions(String)Error(Box<OclError>)

Methods

impl PlatformInfoResult
[src]

Trait Implementations

impl Debug for PlatformInfoResult
[src]

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

Formats the value using the given formatter.

impl Display for PlatformInfoResult
[src]

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

Formats the value using the given formatter.

impl Into<String> for PlatformInfoResult
[src]

fn into(self) -> String

Performs the conversion.

impl From<OclError> for PlatformInfoResult
[src]

fn from(err: OclError) -> PlatformInfoResult

Performs the conversion.

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