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

    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§