pub trait IntoPointer {
    fn into_pointer(&self) -> *const ();
}

Required Methods

Returns a pointer which outlives self.

Implementors