pub trait IntoGlibPtr<P>where
    P: Ptr,{
    // Required method
    unsafe fn into_glib_ptr(self) -> P;
}
Expand description

Translate to a pointer.

Required Methods§

unsafe fn into_glib_ptr(self) -> P

Transfer: full.

Implementors§

§

impl IntoGlibPtr<*mut i8> for GString

§

impl<P, T> IntoGlibPtr<P> for Option<T>where P: Ptr, T: IntoGlibPtr<P>,