pub trait InputBlock<'i, const N: usize>: Deref<Target = [u8]> {
// Required method
fn halves(&self) -> (&[u8], &[u8]);
// Provided method
fn quarters(&self) -> (&[u8], &[u8], &[u8], &[u8]) { ... }
}
Expand description
A block of bytes of size N
returned from InputBlockIterator
.