[−][src]Trait try_traits::clone::TryClone
The try trait for Clone
.
Associated Types
type Error
The type returned in the event of an error.
Required methods
fn try_clone(&self) -> Result<Self, Self::Error>
The fallible equivalent of Clone::clone
.
Provided methods
fn try_clone_from(&mut self, source: &Self) -> Result<(), Self::Error>
The fallible equivalent of Clone::clone_from
.