pub trait BlockSizeUser {
    type BlockSize: 'static + ArrayLength<u8>;

    fn block_size() -> usize { ... }
}
Available on crate feature core-api only.
Expand description

Types which process data in blocks.

Required Associated Types

Size of the block in bytes.

Provided Methods

Return block size in bytes.

Implementations on Foreign Types

Implementors