Trait signifix::TryInto [] [src]

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

Required until the try_from feature stabilised.

An attempted conversion that consumes self, which may or may not be expensive.

Associated Types

The type returned in the event of a conversion error.

Required Methods

Performs the conversion.

Implementors