pub trait AsyncTryClone: Sized {
    fn async_try_clone<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<Self>> + Send + 'async_trait>>
   where
        'life0: 'async_trait,
        Self: 'async_trait
; }
Expand description

Clone trait for async structs.

Required Methods

Try cloning a object and return an Err in case of failure.

Implementors