pub struct PackedWriter { /* private fields */ }
Expand description

A packed snapshot writer. This writes snapshots to a single concatenated file.

The file format is very simple and consists of three parts: [Concatenated chunk data] [manifest as RLP] [manifest start offset (8 bytes little-endian)]

The manifest contains all the same information as a standard ManifestData, but also maps chunk hashes to their lengths and offsets in the file for easy reading.

Implementations

Create a new “PackedWriter”, to write into the file at the given path.

Trait Implementations

Write a compressed state chunk.

Write a compressed block chunk.

Complete writing. The manifest’s chunk lists must be consistent with the chunks written. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.