Trait IntoRawPtr

Source
pub trait IntoRawPtr {
    // Required method
    fn into_raw(self) -> *mut ();
}
Expand description

Convert from into a raw pointer

Required Methods§

Implementations on Foreign Types§

Source§

impl<'a, T> IntoRawPtr for &'a T

Source§

impl<T> IntoRawPtr for Box<T>

Source§

impl<T> IntoRawPtr for Arc<T>

Implementors§