Crate one_dto_mapper

Source

Traits§

TraversableResult
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 the Into::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 apply TryInto::try_into instead
try_convert_inner
Same as convert_inner, but will apply TryInto::try_into instead
try_convert_inner_of_inner
Same as convert_inner_of_inner, but will apply TryInto::try_into instead

Derive Macros§

From
Into
TryFrom
TryInto