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

    fn block_size() -> usize { ... }
}
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§