pub trait InnerUser {
    type Inner;
}
Expand description

Types which use another type for initialization.

Generally it’s used indirectly via InnerInit or InnerIvInit.

Required Associated Types§

source

type Inner

Inner type.

Implementors§

impl<C, F> InnerUser for CtrCore<C, F>where C: BlockEncryptMut + BlockCipher, F: CtrFlavor<C::BlockSize>,