Expand description
§Core Convert Extensions
Useful extensions to core::convert library.
Traits§
- To
- Simple and safe type conversions to
self. Relies on reciprocalsFromandInto, so as a consequence the implementation of at least one of them is required. - TryTo
- Simple and safe type conversions to
selfthat may fail in a controlled way under some circunstances. Relies on reciprocalsTryFromandTryInto, so as a consequence the implementation of at least one of them is required.