Trait fallible::TryClone[][src]

pub trait TryClone: Sized {
    type Error;
    fn try_clone(&self) -> Result<Self, Self::Error>;

    fn try_clone_from(&mut self, other: &Self) -> Result<(), Self::Error> { ... }
}

Associated Types

Required Methods

Provided Methods

Implementors