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
Running clippy on serde results in the following warning:
src/ser/impls.rs:291:23: 291:36 warning: I see you're using a LinkedList! Perhaps you meant some other data structure?, #[warn(linkedlist)] on by default
src/ser/impls.rs:291 impl<T> Serialize for LinkedList<T>
^~~~~~~~~~~~~
src/ser/impls.rs:291:23: 291:36 help: a VecDeque might work
for further information visit https://github.com/Manishearth/rust-clippy/wiki#linkedlist
Ignoring my general reservations against this lint, a trait impl on LinkedList isn't the same as using a linked list, so I think we should ignore cases like this.
The text was updated successfully, but these errors were encountered:
Running clippy on serde results in the following warning:
Ignoring my general reservations against this lint, a trait impl on
LinkedList
isn't the same as using a linked list, so I think we should ignore cases like this.The text was updated successfully, but these errors were encountered: