[][src]Trait tink_core::VerifierBoxClone

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

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

Required methods

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

Loading content...

Implementors

impl<T> VerifierBoxClone for T where
    T: 'static + Verifier + Clone
[src]

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

Loading content...