[][src]Trait wiggle::Pointee

pub trait Pointee: Sealed { }

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.

Implementations on Foreign Types

impl<T> Pointee for [T][src]

type Pointer = (u32, u32)

impl Pointee for str[src]

type Pointer = (u32, u32)

Loading content...

Implementors

impl<T> Pointee for T[src]

type Pointer = u32

Loading content...