Trait ripin::convert_ref::TryFromRef [] [src]

pub trait TryFromRef<T>: Sized {
    type Err;
    fn try_from_ref(_: &T) -> Result<Self, Self::Err>;
}

Attempt to construct Self via a conversion from a ref.

Associated Types

The type returned in the event of a conversion error.

Required Methods

Performs the conversion.

Implementors