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§

impl<T, OutSize, O> OutputSizeUser for CtVariableCoreWrapper<T, OutSize, O>where
    T: VariableOutputCore,
    OutSize: ArrayLength<u8> + IsLessOrEqual<T::OutputSize> + 'static,
    LeEq<OutSize, T::OutputSize>: NonZero,
    T::BlockSize: IsLess<U256>,
    Le<T::BlockSize, U256>: NonZero,

impl<T> OutputSizeUser for CoreWrapper<T>where
    T: BufferKindUser + OutputSizeUser,
    T::BlockSize: IsLess<U256>,
    Le<T::BlockSize, U256>: NonZero,