Traits§
- Traversable
Result - Simplified Traversable typeclass that only supports
Result
as the outermost effect.
Functions§
- convert_
inner - Converts the inner value of a container (
Vec
,Option
or other) using theInto::into
function. - convert_
inner_ of_ inner - Same as
convert_inner
, but works for deeper nested containers such as Option<Vec> - iterable_
into - Converts value into an iterator, then applies
Into::into
to each item and collects items back to the requested type - iterable_
try_ into - Same as
iterable_into
, but will applyTryInto::try_into
instead - try_
convert_ inner - Same as
convert_inner
, but will applyTryInto::try_into
instead - try_
convert_ inner_ of_ inner - Same as
convert_inner_of_inner
, but will applyTryInto::try_into
instead