logo
pub trait OutputSizeUser {
    type OutputSize: 'static + ArrayLength<u8>;
    fn output_size() -> usize { ... }
}
Expand description

Types which return data with the given size.

Associated Types

Size of the output in bytes.

Provided methods

Return output size in bytes.

Implementors