[−][src]Trait tink_core::HybridEncryptBoxClone
Trait bound to indicate that primitive trait objects should support cloning themselves as trait objects.
Required methods
fn box_clone(&self) -> Box<dyn HybridEncrypt>
Implementors
impl<T> HybridEncryptBoxClone for T where
T: 'static + HybridEncrypt + Clone,
[src]
T: 'static + HybridEncrypt + Clone,
Default implementation of the box-clone trait bound for any underlying
concrete type that implements Clone
.