[][src]Struct liberasurecode::Builder

pub struct Builder { /* fields omitted */ }

ErasureCoder builder.

Methods

impl Builder[src]

pub const DEFAULT_BACKEND: Backend[src]

The default backend.

pub const DEFAULT_CHECKSUM: Checksum[src]

The default checksum algorithm.

pub fn new(data_fragments: NonZeroUsize, parity_fragments: NonZeroUsize) -> Self[src]

Makes a new Builder with the default settings.

data_fragments and parity_fragments are the number of data fragments and parity fragments respectively.

pub fn backend(&mut self, backend: Backend) -> &mut Self[src]

Sets the type of the erasure coding backend used by the resulting instance.

The default value is DEFAULT_BACKEND.

pub fn checksum(&mut self, checksum: Checksum) -> &mut Self[src]

Sets the checksum algorithm used by the resulting instance.

The default value is DEFAULT_CHECKSUM.

pub fn finish(&self) -> Result<ErasureCoder>[src]

Builds a new ErasureCoder instance with the given settings.

Trait Implementations

impl Clone for Builder[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Builder[src]

Auto Trait Implementations

impl Unpin for Builder

impl Send for Builder

impl Sync for Builder

impl RefUnwindSafe for Builder

impl UnwindSafe for Builder

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]