[][src]Module core_extensions::try_from

A version of TryFrom/TryInto in stable Rust before they are stabilized. These traits are used for fallible conversions.

Traits

TryFrom

Attempts to convert from T to Self,returning Err(Self::Error) on failure.

TryInto

Attempts to convert from Self to T,returning Err(Self::Error) on failure.