Trait PinnedStorage

Source
pub trait PinnedStorage: 'static {
    type PinnedVec<V>: PinnedVec<Node<V>>
       where V: TreeVariant;
}
Expand description

Trait defining the underlying pinned vector storage of the tree.

Required Associated Types§

Source

type PinnedVec<V>: PinnedVec<Node<V>> where V: TreeVariant

The pinned vector for the given variant V.

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.

Implementors§