logo
pub trait BlockSizeUser {
    type BlockSize: ArrayLength<u8> + 'static;
    fn block_size() -> usize { ... }
}
Expand description

Types which process data in blocks.

Associated Types

Size of the block in bytes.

Provided methods

Return block size in bytes.

Implementations on Foreign Types

Implementors