Traits§
- Traversable
Result - Simplified Traversable typeclass that only supports
Resultas the outermost effect.
Functions§
- convert_
inner - Converts the inner value of a container (
Vec,Optionor other) using theInto::intofunction. - 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::intoto each item and collects items back to the requested type - iterable_
try_ into - Same as
iterable_into, but will applyTryInto::try_intoinstead - try_
convert_ inner - Same as
convert_inner, but will applyTryInto::try_intoinstead - try_
convert_ inner_ of_ inner - Same as
convert_inner_of_inner, but will applyTryInto::try_intoinstead