pub trait ProjectableMarker<T> {
    type Output;

    unsafe fn from_raw(&self, raw: *mut T) -> Self::Output;
}
Expand description

Trait to wrap raw pointer to a field with a type that corresponds to a projection being done

Required Associated Types

Wrapped pointer type

Required Methods

Wraps raw pointer to a field with a type that corresponds to a projection being done

Implementations on Foreign Types

Implementors