Trait libipld::store::StoreParams[][src]

pub trait StoreParams: Debug + Clone + Send + Sync + Unpin + 'static {
    type Hashes: MultihashDigest<AllocSize = U64>;
    type Codecs: Codec;

    const MAX_BLOCK_SIZE: usize;
}
Expand description

The store parameters.

Associated Types

type Hashes: MultihashDigest<AllocSize = U64>[src]

The multihash type of the store.

type Codecs: Codec[src]

The codec type of the store.

Associated Constants

const MAX_BLOCK_SIZE: usize[src]

The maximum block size supported by the store.

Implementors