pub trait FromRawPtr {
    unsafe fn from_raw(ptr: *mut ()) -> Self;
}
Expand description

Convert from a raw ptr into a pointer

Required Methods

Implementations on Foreign Types

Implementors