Skip to main content

BufferKindUser

Trait BufferKindUser 

Source
pub trait BufferKindUser: SmallBlockSizeUser {
    type BufferKind: BufferKind;
}
Expand description

Types which use BlockBuffer functionality.

Required Associated Types§

Source

type BufferKind: BufferKind

Block buffer kind over which type operates.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T, OutSize> BufferKindUser for CtOutWrapper<T, OutSize>
where T: VariableOutputCore, OutSize: ArraySize + IsLessOrEqual<T::OutputSize, Output = True>,