[][src]Trait fil_ocl_core::types::abs::ClWaitListPtr

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.

Loading content...

Implementations on Foreign Types

impl<'a, W> ClWaitListPtr for Ref<'a, W> where
    W: ClWaitListPtr
[src]

impl<'a> ClWaitListPtr for &'a [cl_event][src]

impl<'a> ClWaitListPtr for &'a [Event][src]

impl<'a> ClWaitListPtr for ()[src]

Loading content...

Implementors

impl ClWaitListPtr for Event[src]

impl<'a> ClWaitListPtr for &'a Event[src]

Loading content...