Trait ocl_core::types::abs::ClWaitListPtr [−][src]
pub unsafe trait ClWaitListPtr: Debug { unsafe fn as_ptr_ptr(&self) -> *const cl_event; fn count(&self) -> u32; }
Types with a reference to a raw event array and an associated element count.
[TODO]: Create an enum to be used with this trait.
Required Methods
unsafe fn as_ptr_ptr(&self) -> *const cl_event
Returns a pointer to the first pointer in this list.
fn count(&self) -> u32
Returns the number of items in this wait list.
Implementations on Foreign Types
impl<'a, W> ClWaitListPtr for Ref<'a, W> where
W: ClWaitListPtr,
[src]
impl<'a, W> ClWaitListPtr for Ref<'a, W> where
W: ClWaitListPtr,
impl<'a> ClWaitListPtr for &'a [cl_event]
[src]
impl<'a> ClWaitListPtr for &'a [cl_event]
impl<'a> ClWaitListPtr for &'a [Event]
[src]
impl<'a> ClWaitListPtr for &'a [Event]
impl<'a> ClWaitListPtr for ()
[src]
impl<'a> ClWaitListPtr for ()