Expand description
This crate offers an extension trait IntoExt for the Into trait from the standard
library, offering a method .into_::<T>() to specify the target type of
conversion.
It also comes with a similar extension trait TryIntoExt for TryInto.
See the documentation of IntoExt::into_ or TryIntoExt::try_into_ for more
details.
Modules§
- prelude
- The
into_extprelude
Traits§
- IntoExt
- Extension trait for the
Intotrait, offering a method.into_::<T>()to specify the target type of conversion. - TryInto
Ext - Extension trait for the
TryIntotrait, offering a method.try_into_::<T>()to specify the target type of conversion. - Type
IsEqual - Helper trait for type equality, necessary to make
IntoExt::into_work.