Trait ocl_core::types::abs::ClWaitList [] [src]

pub unsafe trait ClWaitList: 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.

Using references just to be extra paranoid about copying raw pointers.

Required Methods

unsafe fn as_ptr_ptr(&self) -> *const cl_event

fn count(&self) -> u32

Implementors