Enum rdedup_lib::config::ChunkingAlgorithm [] [src]

pub enum ChunkingAlgorithm {
    Bup {
        chunk_bits: u32,
    },
}

ChunkingAlgorithm are the algorithms supported by rdedup

Variants

Bup is the default algorithm, the chunk_bits value provided with bup is the bit shift to be used by rollsum. The valid range is between 10 and 30 (1KB to 1GB)

Fields of Bup

Methods

impl ChunkingAlgorithm
[src]

Trait Implementations

impl Copy for ChunkingAlgorithm
[src]

impl Clone for ChunkingAlgorithm
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ChunkingAlgorithm
[src]

Formats the value using the given formatter.

impl PartialEq for ChunkingAlgorithm
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Default for ChunkingAlgorithm
[src]

Default implementation for the ChunkingAlgorithm

Returns the "default value" for a type. Read more