HasImmPtrTo

Type Alias HasImmPtrTo 

Source
pub type HasImmPtrTo<T> = PhantomData<*const T>;
Expand description

Marks the containing type as having mutable pointers to T.

T is covariant, it also marks the containing type as not Send and not Sync.

See the crate root documentation for details on variance and marker traits.

Aliased Typeยง

pub struct HasImmPtrTo<T>;