[][src]Trait cloned::TryToCloned

pub trait TryToCloned<T>: Sized {
    type Error;
    fn try_to_cloned(&self) -> Result<T, Self::Error>;
}

Associated Types

type Error

Loading content...

Required methods

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

Loading content...

Implementors

impl<T, U> TryToCloned<U> for T where
    U: TryClonedFrom<T>, 
[src]

type Error = U::Error

Loading content...