pub unsafe trait ClContextPtr: Debug + Copy {
    // Required method
    fn as_ptr(&self) -> cl_context;
}
Expand description

Types with a copy of a context pointer.

Required Methods§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl ClContextPtr for cl_context

source§

impl<'a> ClContextPtr for &'a cl_context

Implementors§