Struct asuran::chunker::static_size::StaticSize[][src]

pub struct StaticSize {
    pub len: usize,
}
Expand description

Settings for a static chunk length Chunker

This is a pretty simple chunker, it simply splits the contents into len sized chunks. Has a comparatively poor reduplication ratio, due to the boundary shift problem, but it has more performance than just about anything else out there.

Fields

len: usize

Trait Implementations

The return type of the functions in this trait is an iterator over the chunks of their input. Read more

Core function, takes a boxed owned Read and produces an iterator of Vec over it

Convenience function that boxes a bare Read for you, and passes it to chunk_boxed Read more

Convenience function that boxes an AsRef<u8> wrapped in a cursor and passes it to chunk_boxed. Implementations are encouraged to overwrite when sensible. Read more

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Provides default settings with a chunk size of 64kiB

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

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more