Trait tink_core::DeterministicAeadBoxClone[][src]

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

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

Required methods

Loading content...

Implementors

impl<T> DeterministicAeadBoxClone for T where
    T: 'static + DeterministicAead + Clone
[src]

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

Loading content...