Trait tendermint_std_ext::TryClone
source · pub trait TryClone: Sized {
type Error: Error;
// Required method
fn try_clone(&self) -> Result<Self, Self::Error>;
}Expand description
Types that can be cloned where success is not guaranteed can implement this trait.