Struct ocl_core::types::abs::Context

source ·
#[repr(C)]
pub struct Context(/* private fields */);
Expand description

cl_context

Implementations§

source§

impl Context

source

pub unsafe fn from_raw_create_ptr(ptr: cl_context) -> Context

Only call this when passing the original newly created pointer directly from clCreate.... Do not use this to clone or copy.

source

pub unsafe fn from_raw_copied_ptr(ptr: cl_context) -> Context

Only call this when passing a copied pointer such as from an clGet*****Info function.

source

pub fn as_ptr(&self) -> cl_context

Returns a pointer, do not store it.

source

pub fn devices(&self) -> OclCoreResult<Vec<DeviceId>>

Returns the devices associated with this context.

source

pub fn platform(&self) -> OclCoreResult<Option<PlatformId>>

Returns the platform associated with this context, if any.

Errors upon the usual OpenCL errors.

Returns None if the context properties do not specify a platform.

Trait Implementations§

source§

impl<'a> ClContextPtr for &'a Context

source§

impl<'a> ClVersions for &'a Context

source§

impl ClVersions for Context

source§

impl Clone for Context

source§

fn clone(&self) -> Context

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Context

source§

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

Formats the value using the given formatter. Read more
source§

impl Drop for Context

source§

fn drop(&mut self)

Panics in the event of an error of type Error::Status except when the status code is CL_INVALID_CONTEXT (which is ignored).

This is done because certain platforms error with CL_INVALID_CONTEXT for unknown reasons and as far as we know can be safely ignored.

source§

impl PartialEq for Context

source§

fn eq(&self, other: &Context) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Send for Context

source§

impl Sync for Context

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.