Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore return_self_not_must_use clippy lint
error: missing `#[must_use]` attribute on a method returning `Self` --> src/error.rs:296:5 | 296 | / pub fn context<C>(self, context: C) -> Self 297 | | where 298 | | C: Display + Send + Sync + 'static, 299 | | { ... | 323 | | unsafe { Error::construct(error, vtable, backtrace) } 324 | | } | |_____^ | = note: `-D clippy::return-self-not-must-use` implied by `-D clippy::all` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#return_self_not_must_use
- Loading branch information