pub unsafe trait ClNullEventPtr: Debug {
    fn alloc_new(&mut self) -> *mut cl_event;
    unsafe fn clone_from<E: AsRef<Event>>(&mut self, ev: E);
}
Expand description

Types with a mutable pointer to a new, null raw event pointer.

Required Methods

Implementations on Foreign Types

Implementors