[][src]Trait fallible::TryClone

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

type Error

Loading content...

Required methods

fn try_clone(&self) -> Result<Self, Self::Error>

Loading content...

Provided methods

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

Loading content...

Implementors

impl<T: Clone> TryClone for T[src]

type Error = Void

Loading content...