diff options
author | Martin Fischer <martin@push-f.com> | 2023-01-08 06:10:23 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-01-08 06:10:23 +0100 |
commit | b19bc58be7df84f2b60ccdcd83c78e8f080eaa31 (patch) | |
tree | 8735b88a93bda4b07ac7777632a6cd9edce2cd3e | |
parent | 77cefa5f868271d00ce8332afdc8db8f42a644c6 (diff) |
-rw-r--r-- | README.md | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -28,7 +28,7 @@ let object = &client as &dyn Client; The last line of the above code fails to compile with: -> error\[E0191\]: the value of the associated type `Error` (from trait `Client`) +> error\[[E0191]\]: the value of the associated type `Error` (from trait `Client`) > must be specified To use dynamize you only have to make some small changes: @@ -249,3 +249,5 @@ The passed number tells dynamize how many generic type parameters to expect. * for 2 dynamize expects: `Type<A,B>: IntoIterator<Item=(A,B)> + FromIterator<(A,B)>` * for 3 dynamize expects: `Type<A,B,C>: IntoIterator<Item=(A,B,C)> + FromIterator<(A,B,C)>` * etc ... + +[E0191]: https://doc.rust-lang.org/stable/error_codes/E0191.html |