[][src]Struct dynamic_ocl::platform::Platform

pub struct Platform(_);

An OpenCL platform

Methods

impl Platform[src]

pub fn get_platforms() -> Result<Vec<Platform>>[src]

Get a list of OpenCL platforms available on this system.

pub fn get_devices(self, typ: DeviceType) -> Result<Vec<Device>>[src]

pub fn raw(self) -> cl_platform_id[src]

Get the raw handle for this platform

pub unsafe fn from_raw(handle: cl_platform_id) -> Self[src]

Wrap the given raw platform handle

Safety

If the given handle is not a valid OpenCL platform ID, behavior is undefined.

pub fn profile(&self) -> Result<CString>[src]

pub fn version(&self) -> Result<CString>[src]

pub fn name(&self) -> Result<CString>[src]

pub fn vendor(&self) -> Result<CString>[src]

pub fn extensions(&self) -> Result<CString>[src]

pub fn host_timer_resolution(&self) -> Result<cl_ulong>[src]

Trait Implementations

impl Clone for Platform[src]

impl Copy for Platform[src]

impl Debug for Platform[src]

impl Eq for Platform[src]

impl Hash for Platform[src]

impl PartialEq<Platform> for Platform[src]

impl StructuralEq for Platform[src]

impl StructuralPartialEq for Platform[src]

Auto Trait Implementations

impl RefUnwindSafe for Platform

impl !Send for Platform

impl !Sync for Platform

impl Unpin for Platform

impl UnwindSafe for Platform

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.