Trait tsukuyomi::util::TryInto

source ·
pub trait TryInto<T> {
    type Error: Into<Error>;

    fn try_into(self) -> Result<T, Self::Error>;
}
Expand description

A trait representing the conversion into a value of specified type.

This trait is an emulation of the standard TryInto.

Required Associated Types

Required Methods

Implementors