Crate nuts_backend

Source
Expand description

The backend of a container

§Create a container

The Create trait is used to create a new instance of a Backend.

Mainly, is performs the following tasks:

  1. It creates the Backend::Settings of the backend. The settings contains runtime information which are stored in the header of the container. Later, when the container is opened again, the settings are extracted from the header and passed back to the backend.
  2. The final Create::build() call creates the backend instance, which is used by the container. Its gets the binary data of the header (which already contains the binary encoded settings) and must store it at a suitable location.

§Open a container

The Open trait is used to open an existing Backend instance.

The container asks the trait for the binary header data using the ReceiveHeader trait. The implementation should load it from a suitable location.

The final Open::build() call creates the backend instance, which is used by the container.

Constants§

HEADER_MAX_SIZE

Traits§

Backend
Trait that describes a backend of a container.
Binary
Trait for binary conversion.
Create
Trait to configure the creation of a Backend.
IdSize
Trait evaluates the size of an id.
Open
Trait used to open a Backend.
ReceiveHeader
Trait used to receive the header of a container.