Trait tink_core::SignerBoxClone[][src]

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

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

Required methods

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

Loading content...

Implementors

impl<T> SignerBoxClone for T where
    T: 'static + Signer + Clone
[src]

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

Loading content...