logo
pub trait BlockSizeUser {
    type BlockSize: 'static + ArrayLength<u8>;
    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