wiggle

Trait Pointee

source
pub trait Pointee: Sealed { }
Expand description

Types that can be pointed to by GuestPtr<T>.

In essence everything can, and the only special-case is unsized types like str and [T] which have special implementations.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

source§

impl Pointee for str

source§

impl<T> Pointee for [T]

Implementors§

source§

impl<T> Pointee for T