[][src]Trait cloned::TryClonedFrom

pub trait TryClonedFrom<T: ?Sized>: Sized {
    type Error;
    fn try_cloned_from(value: &T) -> Result<Self, Self::Error>;
}

Associated Types

type Error

Loading content...

Required methods

fn try_cloned_from(value: &T) -> Result<Self, Self::Error>

Loading content...

Implementors

impl<T: ?Sized, U> TryClonedFrom<T> for U where
    T: Clone,
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

Loading content...