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.

Implementations on Foreign Types§

source§

impl<C> InnerUser for Decryptor<C>

§

type Inner = C

source§

impl<C> InnerUser for Encryptor<C>

§

type Inner = C

source§

impl<C> InnerUser for CmacCore<C>

§

type Inner = C

source§

impl<C, F> InnerUser for CtrCore<C, F>

§

type Inner = C

Implementors§