Trait gluon_vm::gc::FromPtr[][src]

pub unsafe trait FromPtr<D> {
    unsafe fn make_ptr(data: D, ptr: *mut ()) -> *mut Self;
}

Trait which creates a typed pointer from a *mut () pointer. For Sized types this is just a cast but for unsized types some more metadata must be taken from the provided D value to make it initialize correctly.

Required Methods

Implementations on Foreign Types

impl<'s, 't, T> FromPtr<&'s &'t [T]> for [T]
[src]

Implementors