[][src]Trait tink_core::StreamingAeadBoxClone

pub trait StreamingAeadBoxClone {
    pub fn box_clone(&self) -> Box<dyn StreamingAead>;
}

Trait bound to indicate that primitive trait objects should support cloning themselves as trait objects.

Required methods

pub fn box_clone(&self) -> Box<dyn StreamingAead>[src]

Loading content...

Implementors

impl<T> StreamingAeadBoxClone for T where
    T: 'static + StreamingAead + Clone
[src]

Default implementation of the box-clone trait bound for any underlying concrete type that implements Clone.

Loading content...