We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ec8b53 commit b0decf7Copy full SHA for b0decf7
README.md
@@ -23,16 +23,6 @@ This will generate trait implementations for `Example` for any `T`,
23
as opposed to std's derives, which would only implement these traits with
24
`T: Trait` bound to the corresponding trait.
25
26
-Multiple `derive_where` attributes can be added to an item, but only the
27
-first one should use any path qualifications. Otherwise helper attributes
28
-won't be applied to any but the first `derive_where` attribute on the item.
29
-
30
-```rust
31
-#[derive_where::derive_where(Clone, Debug)]
32
-#[derive_where(Default, Hash)]
33
-struct Example<T>(PhantomData<T>);
34
-```
35
36
Multiple `derive_where` attributes can be added to an item, but only the
37
first one must use any path qualifications.
38
0 commit comments