diff options
author | Martin Fischer <martin@push-f.com> | 2021-11-22 06:36:37 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2021-11-22 07:45:30 +0100 |
commit | bacdafb4883d8f8ea06e498285c78f82de9a391b (patch) | |
tree | 30f3f795e2b8c4895cea7e708ca4a1fe46eedd0c /README.md | |
parent | a973a628ec051ab9483fde7d694bb261bb793178 (diff) |
support Vec, VecDeque & LinkedList collections
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -90,6 +90,7 @@ Dynamize also understands if you wrap associated types in the following types: * `Option<_>` * `Result<_, _>` * `some::module::Result<_>` (type alias with fixed error type) +* `Vec<_>`, `VecDeque<_>`,`LinkedList<_>` * `&mut dyn Iterator<Item = _>` Note that since these are resolved recursively you can actually nest these |