You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# `auto_impl`[](https://gitter.im/auto-impl-rs/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)[](https://github.com/auto-impl-rs/auto_impl/actions/workflows/ci.yml)[](https://crates.io/crates/auto_impl)[](https://docs.rs/auto_impl)
A proc-macro attribute for automatically implementing a trait for references,
4
4
some common smart pointers and closures.
@@ -36,8 +36,14 @@ requires_foo(&0i32); // works: through the generated impl
36
36
requires_foo(Box::new(0i32)); // works: through the generated impl
37
37
```
38
38
39
-
For more explanations, please see [**the documentation**](https://docs.rs/auto_impl) and for more examples, see [the examples folder](https://github.com/auto-impl-rs/auto_impl/tree/master/examples).
39
+
For more explanations, please see [**the documentation**](https://docs.rs/auto_impl) and for more examples, see
0 commit comments