[][src]Struct over_there::core::transport::crypto::nonce::cache::NonceCacheBicrypter

pub struct NonceCacheBicrypter<T: Bicrypter> { /* fields omitted */ }

Implementations

impl<T: Bicrypter> NonceCacheBicrypter<T>[src]

pub fn new(bicrypter: T, nonce_cache_size: usize) -> Self[src]

pub fn with_no_nonce_cache(bicrypter: T) -> Self[src]

Trait Implementations

impl<T: Bicrypter> Bicrypter for NonceCacheBicrypter<T>[src]

impl<T: Clone + Bicrypter> Clone for NonceCacheBicrypter<T>[src]

impl<T: Bicrypter> Decrypter for NonceCacheBicrypter<T>[src]

impl<T: Bicrypter> Encrypter for NonceCacheBicrypter<T>[src]

fn new_encrypt_associated_data(&self) -> AssociatedData[src]

Returns underlying bicrypter's associated data

Auto Trait Implementations

impl<T> RefUnwindSafe for NonceCacheBicrypter<T> where
    T: RefUnwindSafe

impl<T> Send for NonceCacheBicrypter<T> where
    T: Send

impl<T> Sync for NonceCacheBicrypter<T> where
    T: Sync

impl<T> Unpin for NonceCacheBicrypter<T> where
    T: Unpin

impl<T> UnwindSafe for NonceCacheBicrypter<T> where
    T: 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> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,