Trait libipld::store::StoreParams

source ·
pub trait StoreParams: Debug + Clone + Send + Sync + Unpin + 'static {
    type Hashes: MultihashDigest<64>;
    type Codecs: Codec;

    const MAX_BLOCK_SIZE: usize;
}
Expand description

The store parameters.

Required Associated Types§

source

type Hashes: MultihashDigest<64>

The multihash type of the store.

source

type Codecs: Codec

The codec type of the store.

Required Associated Constants§

source

const MAX_BLOCK_SIZE: usize

The maximum block size supported by the store.

Object Safety§

This trait is not object safe.

Implementors§