Module core_extensions::try_from[][src]

A version of TryFrom/TryInto in stable Rust. 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.