137 |
#[allow(unknown_lints)]
|
138 |
#[allow(clippy::explicit_auto_deref)]
|
139 |
&*self.values
|
89 |
// This is a spurious clippy lint on Rust 1.65.0
|
90 |
#[allow(clippy::explicit_auto_deref)]
|
91 |
*self.graph
|
251 |
// clippy bug.
|
252 |
#[allow(clippy::explicit_auto_deref)]
|
253 |
fn words(&self) -> &[String] {
|
520 |
// Explicit auto deref necessary because this is ManuallyDrop.
|
521 |
#[allow(clippy::explicit_auto_deref)]
|
522 |
unsafe {
|
77 |
// Temporary, see https://github.com/rust-lang/rust-clippy/issues/9101
|
78 |
#[allow(unknown_lints, clippy::explicit_auto_deref)]
|
79 |
let class_array = NSArray::from_slice(&*string_classes);
|
501 |
// FIXME ComRc Deref
|
502 |
#[allow(clippy::explicit_auto_deref)]
|
503 |
let ierr: &dyn IErrorInfo = &*ierrorinfo;
|
4308 |
#[allow(clippy::explicit_auto_deref)] // https://github.com/rust-lang/rust-clippy/issues/9763
|
4309 |
fn with_remote_callbacks<T>(ui: &mut Ui, f: impl FnOnce(git::RemoteCallbacks<'_>) -> T) -> T {
|
53 |
// clippy suggests a change that doesn't compile
|
54 |
#[allow(clippy::explicit_auto_deref)]
|
55 |
pub const fn const_into_iter(self) -> Iter<'a, T> {
|
702 |
let handle_b = client.add_room_event_handler(
|
703 |
#[allow(unknown_lints, clippy::explicit_auto_deref)] // lint is buggy
|
704 |
*DEFAULT_SYNC_ROOM_ID,
|
176 |
/// Get a reference to the store.
|
177 |
#[allow(unknown_lints, clippy::explicit_auto_deref)]
|
178 |
pub fn store(&self) -> &dyn StateStore {
|
13 |
type Target = str;
|
14 |
#[allow(clippy::explicit_auto_deref)]
|
15 |
fn deref(&self) -> &Self::Target {
|
104 |
// Temporary, see https://github.com/rust-lang/rust-clippy/issues/9101
|
105 |
#[allow(unknown_lints, clippy::explicit_auto_deref)]
|
106 |
let class_array = NSArray::from_slice(&*string_classes);
|
110 |
/// Parse a row number to a row index.
|
111 |
#[allow(clippy::explicit_auto_deref)]
|
112 |
pub fn try_u32_from_rowname(i: Span<'_>) -> Result<u32, ParseRownameError> {
|
307 |
/// Parse a row number to a row index.
|
308 |
#[allow(clippy::explicit_auto_deref)]
|
309 |
pub fn try_u32_from_rowname(i: Span<'_>) -> Result<u32, CellRefError> {
|
67 |
// See: https://github.com/rust-lang/rust-clippy/issues/9763
|
68 |
#[allow(clippy::explicit_auto_deref)]
|
69 |
&mut *self.0
|
31 |
// https://github.com/rust-lang/rust-clippy/issues/9841
|
32 |
#[allow(clippy::explicit_auto_deref)]
|
33 |
partial_eq_slice(self, *other)
|
220 |
clippy::enum_glob_use,
|
221 |
clippy::explicit_auto_deref,
|
222 |
clippy::missing_errors_doc,
|
308 |
clippy::doc_markdown,
|
309 |
clippy::explicit_auto_deref,
|
310 |
clippy::if_not_else,
|
60 |
clippy::doc_markdown,
|
61 |
clippy::explicit_auto_deref,
|
62 |
clippy::if_not_else,
|
6 |
#![allow(clippy::explicit_auto_deref)]
|
7 |
#![allow(clippy::redundant_closure)]
|
54 |
clippy::enum_glob_use,
|
55 |
clippy::explicit_auto_deref,
|
56 |
clippy::if_same_then_else,
|
1 |
#![allow(clippy::explicit_auto_deref)]
|
128 |
enum_glob_use,
|
129 |
explicit_auto_deref,
|
130 |
map_err_ignore,
|
310 |
clippy::excessive_precision,
|
311 |
clippy::explicit_auto_deref,
|
312 |
clippy::float_cmp,
|
39 |
// https://github.com/rust-lang/rust-clippy/issues/9101
|
40 |
clippy::explicit_auto_deref
|
41 |
)]
|
264 |
clippy::expl_impl_clone_on_copy,
|
265 |
clippy::explicit_auto_deref,
|
266 |
clippy::if_not_else,
|