pub unsafe trait ToVoid<T> {
    fn to_void(&self) -> *const c_void;
}
Expand description

A trait describing how to convert from the stored *const c_void to the desired T

Required Methods

Implementations on Foreign Types

Implementors