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.

Implementors