From b19bc58be7df84f2b60ccdcd83c78e8f080eaa31 Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Sun, 8 Jan 2023 06:10:23 +0100 Subject: doc: link E0191 documentation in README --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d39bd8e..25774f7 100644 --- a/README.md +++ b/README.md @@ -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: IntoIterator + FromIterator<(A,B)>` * for 3 dynamize expects: `Type: IntoIterator + FromIterator<(A,B,C)>` * etc ... + +[E0191]: https://doc.rust-lang.org/stable/error_codes/E0191.html -- cgit v1.2.3