We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7978fdb commit 7afdf11Copy full SHA for 7afdf11
exercises/practice/doubly-linked-list/Cargo.toml
@@ -15,3 +15,4 @@ advanced = []
15
[lints.clippy]
16
drop_non_drop = "allow" # tests call drop before students have implemented it
17
new_without_default = "allow"
18
+should_implement_trait = "allow"
exercises/practice/doubly-linked-list/src/lib.rs
@@ -53,7 +53,6 @@ impl<T> Cursor<'_, T> {
53
54
/// Move one position forward (towards the back) and
55
/// return a reference to the new position
56
- #[allow(clippy::should_implement_trait)]
57
pub fn next(&mut self) -> Option<&mut T> {
58
todo!()
59
}
0 commit comments