[][src]Trait tink_core::HybridDecryptBoxClone

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

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

Required methods

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

Loading content...

Implementors

impl<T> HybridDecryptBoxClone for T where
    T: 'static + HybridDecrypt + Clone
[src]

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

Loading content...