diff options
-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 |