devela::all

Type Alias Bare

Source
pub type Bare = ();
Expand description

core A zero-sized marker for a Storage type that wraps its data in a BareBox.

Equivalent to the Boxed marker struct which uses a Box for the underlying storage.

Trait Implementations§

Source§

impl Storage for Bare

A zero-sized marker for a storage type that wraps its data in a BareBox.

This implementation is equivalent to the one for Boxed which uses Box for storage.

Source§

type Stored<T> = BareBox<T>

The stored associated type. Read more
Source§

fn name() -> &'static str

Returns the static name of the storage implementation. Read more