[][src]Struct rcrypto::cipher_mode::ECBEncrypt

pub struct ECBEncrypt<C, P> { /* fields omitted */ }

Implementations

impl<C, P> ECBEncrypt<C, P> where
    C: Cipher,
    P: 'static + Padding
[src]

pub fn reset(&mut self)[src]

Trait Implementations

impl<C, P> Cipher for ECBEncrypt<C, P> where
    C: Cipher,
    P: 'static + Padding
[src]

type Output = usize

impl<C, P> EncryptStream for ECBEncrypt<C, P> where
    C: Cipher,
    P: 'static + Padding
[src]

Auto Trait Implementations

impl<C, P> !RefUnwindSafe for ECBEncrypt<C, P>

impl<C, P> !Send for ECBEncrypt<C, P>

impl<C, P> !Sync for ECBEncrypt<C, P>

impl<C, P> Unpin for ECBEncrypt<C, P> where
    C: Unpin,
    P: Unpin

impl<C, P> UnwindSafe for ECBEncrypt<C, P> where
    C: UnwindSafe,
    P: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.