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

Returns a pointer to the first pointer in this list.

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]

[src]

[src]

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

[src]

[src]

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

[src]

[src]

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

[src]

[src]

Implementors