Struct asuran::chunker::FastCDC[][src]

pub struct FastCDC {
    pub min_size: usize,
    pub max_size: usize,
    pub avg_size: usize,
}
Expand description

Settings for a fastcdc Chunker

These are limited to usize, and not u64, because this implementation makes extensive use of in memory buffers of size max_size

This chunker, unlike BuzHash does not support any attempted mitigation of chunk based fingerprinting attacks. Those who are concerned about such an attack may wish to use the BuzHash chunker until such a time that a better repository format that does not leak information about chunk sizes can be developed.

Fields

min_size: usizemax_size: usizeavg_size: 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

Returns the “default value” for a type. 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

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