logo
pub trait OutputSizeUser {
    type OutputSize: ArrayLength<u8> + 'static;

    fn output_size() -> usize { ... }
}
Expand description

Types which return data with the given size.

Required Associated Types

Size of the output in bytes.

Provided Methods

Return output size in bytes.

Implementors