pub trait Pointable<E> {
    fn as_ptr(&self) -> *const E;
    fn len(&self) -> usize;
}
Expand description

Represents a type that I can get a non mutable pointer to and a number of elements that it points to:

Required Methods

Hands out a mutable pointer to the underlying memory:

The number of the elements pointed to by MutPointable::as_mut_ptr

Implementations on Foreign Types

Implementors