pub trait PlatformInfoTraitConst {
    fn as_raw_PlatformInfo(&self) -> *const c_void;

    fn name(&self) -> Result<String> { ... }
    fn vendor(&self) -> Result<String> { ... }
    fn version(&self) -> Result<String> { ... }
    fn version_major(&self) -> Result<i32> { ... }
    fn version_minor(&self) -> Result<i32> { ... }
    fn device_number(&self) -> Result<i32> { ... }
    fn get_device(&self, device: &mut Device, d: i32) -> Result<()> { ... }
    fn empty(&self) -> Result<bool> { ... }
}

Required Methods§

Provided Methods§

See CL_PLATFORM_VERSION

Implementors§