pub trait TryClone: Sized {
    fn try_clone(&self) -> Option<Self>;
}

Required methods

Implementors