1087 |
// in the actual iterator implementations determine the real Send/Sync bounds.
|
1088 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
1089 |
unsafe impl<T> Send for RawIterRange<T> {}
|
1551 |
// TODO: remove allow on lint - https://github.com/bevyengine/bevy/issues/3666
|
1552 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
1553 |
// SAFETY: all methods on the world ensure that non-send resources are only accessible on the main thread
|
27 |
// TODO: remove allow on lint - https://github.com/bevyengine/bevy/issues/3666
|
28 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
29 |
unsafe impl Send for FlexSurface {}
|
81 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
82 |
unsafe impl<Fut: Send> Send for FuturesUnordered<Fut> {}
|
44 |
// across different threads.
|
45 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
46 |
unsafe impl<Fut> Send for Task<Fut> {}
|
245 |
// at the same time.
|
246 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
247 |
unsafe impl<T: ?Sized> Send for CosyncQueueHandle<T> {}
|
306 |
// it's valid.
|
307 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
308 |
unsafe impl<T: ?Sized> Send for CosyncInput<T> {}
|
59 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
60 |
// SAFETY: unsafe trait must have unsafe implementation
|
76 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
77 |
// SAFETY: unsafe trait must have unsafe implementation
|
63 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
64 |
unsafe impl Send for StatementCache {}
|
220 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
221 |
unsafe impl Send for Storage {}
|
50 |
// TODO: remove and use mutex instead
|
51 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
52 |
unsafe impl Send for FluenceFaaS {}
|
236 |
// The entire point of this type is to be Send
|
237 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
238 |
unsafe impl<T> Send for Fragile<T> {}
|
179 |
// make it safe to send. std::sync::Mutex has the same Send impl
|
180 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
181 |
unsafe impl<T: ?Sized + Send> Send for MutexWeak<T> {}
|
431 |
// make it safe to send. std::sync::Mutex has the same Send impl
|
432 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
433 |
unsafe impl<T: ?Sized + Send> Send for Mutex<T> {}
|
657 |
// make it safe to send. std::sync::RwLock has the same Send impl
|
658 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
659 |
unsafe impl<T: ?Sized + Send> Send for RwLock<T> {}
|
31 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
32 |
unsafe impl Send for AudioSink {}
|
30 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
31 |
unsafe impl Send for AudioSource {}
|
202 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
203 |
unsafe impl Send for Writer {}
|
71 |
// TODO: Is it possible to declare it as it should be?
|
72 |
#[allow(unsafe_code, clippy::non_send_fields_in_send_ty)]
|
73 |
unsafe impl<'a, T> Send for State<'a, T> where T: Send {}
|
625 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
626 |
unsafe impl Send for Channel {}
|
320 |
// to other thread. However it's not `Sync`, as `BoxHandler` is unnecessarily `Sync`.
|
321 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
322 |
unsafe impl Send for RequestCallContext {}
|
144 |
// could be sending the message across thread bounds).
|
145 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
146 |
unsafe impl<M: Send> Send for ActorRefKind<M> {}
|
583 |
// could be sending the message across thread bounds).
|
584 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
585 |
unsafe impl<'r, M: Send> Send for SendValueKind<'r, M> {}
|
647 |
// sending the message across thread bounds).
|
648 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
649 |
unsafe impl<'r, M: Send> Send for JoinKind<'r, M> {}
|
25 |
// That's the point!
|
26 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
27 |
unsafe impl<F> Send for UnsafeSendSyncFuture<F> {}
|
98 |
unsafe impl Sync for AllocContext {}
|
99 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
100 |
unsafe impl Send for AllocContext {}
|
163 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
164 |
unsafe impl Send for Context<'_, '_> {}
|
18 |
#[doc(hidden)]
|
19 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
20 |
pub struct Life {
|
50 |
// TODO: remove and use mutex instead
|
51 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
52 |
unsafe impl Send for Marine {}
|
325 |
struct SendableEventCallback<'a, S>(Arc<Mutex<dyn FnMut(NodeEvent<S>) + 'a>>);
|
326 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
327 |
unsafe impl<'a, S> Send for SendableEventCallback<'a, S> {}
|
40 |
// SAFETY: this is safe since the `Context` usage is guarded on `send_user_message`.
|
41 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
42 |
unsafe impl<T: UserEvent> Sync for ClipboardManagerWrapper<T> {}
|
50 |
// SAFETY: usage outside of main thread is guarded, we use the event loop on such cases.
|
51 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
52 |
unsafe impl Send for GlobalShortcutWrapper {}
|
62 |
// SAFETY: this is safe since the `Context` usage is guarded on `send_user_message`.
|
63 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
64 |
unsafe impl<T: UserEvent> Sync for GlobalShortcutManagerHandle<T> {}
|
244 |
// SAFETY: we ensure this type is only used on the main thread.
|
245 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
246 |
unsafe impl<T: UserEvent> Send for DispatcherMainThreadContext<T> {}
|
685 |
// SAFETY: this type is `Send` since `menu_items` are read only here
|
686 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
687 |
unsafe impl Send for WindowBuilderWrapper {}
|
917 |
#[cfg(target_os = "macos")]
|
918 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
919 |
unsafe impl Send for NSWindow {}
|
923 |
#[cfg(windows)]
|
924 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
925 |
unsafe impl Send for Hwnd {}
|
929 |
#[cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "netbsd", target_os = "openbsd"))]
|
930 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
931 |
unsafe impl Send for GtkWindow {}
|
231 |
// TODO: https://github.com/moka-rs/moka/issues/54
|
232 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
233 |
unsafe impl<K, V, S> Send for Cache<K, V, S>
|
18 |
// TODO: https://github.com/moka-rs/moka/issues/54
|
19 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
20 |
// Multi-threaded async runtimes require base_cache::Inner to be Send, but it will
|
237 |
// TODO: https://github.com/moka-rs/moka/issues/54
|
238 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
239 |
unsafe impl<K, V, S> Send for Cache<K, V, S>
|
513 |
// TODO: https://github.com/moka-rs/moka/issues/54
|
514 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
515 |
unsafe impl<K, V, S> Send for Cache<K, V, S>
|
681 |
// TODO: https://github.com/moka-rs/moka/issues/54
|
682 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
683 |
unsafe impl<K, V, S> Send for Cache<K, V, S>
|
32 |
// TODO: https://github.com/moka-rs/moka/issues/54
|
33 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
34 |
unsafe impl<K, V, S> Send for SegmentedCache<K, V, S>
|
94 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
95 |
unsafe impl<T: Task> Send for AsyncWork<T> {}
|
14 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
15 |
unsafe impl<T> Send for Ref<T> {}
|
2718 |
// SAFETY: JSCamera is used in WASM, it will never be sent to a different thread. This is only done to satisfy the compiler.
|
2719 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
2720 |
unsafe impl Send for JSCamera {}
|
82 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
83 |
unsafe impl Send for Db {}
|
967 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
968 |
unsafe impl Send for Iter {}
|
11 |
/// And these variable mustn't be accessed from other threads.
|
12 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
13 |
pub struct SendFuture<F>(pub F);
|
63 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
64 |
unsafe impl Send for StatementCache {}
|
63 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
64 |
unsafe impl Send for StatementCache {}
|
125 |
/// and can be sent across threads safely.
|
126 |
#[allow(unknown_lints, clippy::non_send_fields_in_send_ty)]
|
127 |
unsafe impl<Payloads: Send> Send for Ring<Payloads> {}
|
409 |
/// and can be sent across threads safely.
|
410 |
#[allow(unknown_lints, clippy::non_send_fields_in_send_ty)]
|
411 |
unsafe impl<Payloads: Send> Send for Ring<Payloads> {}
|
95 |
/// and can be sent across threads safely.
|
96 |
#[allow(unknown_lints, clippy::non_send_fields_in_send_ty)]
|
97 |
unsafe impl<Payloads: Send> Send for Ring<Payloads> {}
|
417 |
// outside of the container
|
418 |
#[allow(unknown_lints, clippy::non_send_fields_in_send_ty)]
|
419 |
unsafe impl<S> Send for AbstractStreamManager<S> {}
|
26 |
#[cfg(not(feature = "thread_local"))]
|
27 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
28 |
unsafe impl<T: ?Sized> Send for AtomicRefCell<T> {}
|
90 |
#[derive(Default)]
|
91 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
92 |
struct FrozenFrozenHeap {
|
313 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
314 |
unsafe impl<'a, T> Send for Wrap<'a, T> {}
|
152 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
153 |
unsafe impl Send for Connection {}
|
199 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
200 |
unsafe impl Send for HandleWrapper {}
|
78 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
79 |
unsafe impl<T> Send for Wrap<T> {}
|
71 |
// SAFETY: we ensure this type is only used on the main thread.
|
72 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
73 |
unsafe impl Send for MainThreadContext {}
|
75 |
// SAFETY: we ensure this type is only used on the main thread.
|
76 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
77 |
unsafe impl Sync for MainThreadContext {}
|
28 |
// SAFETY: this is safe since the `Context` usage is guarded on `send_user_message`.
|
29 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
30 |
unsafe impl<T: UserEvent> Sync for ClipboardManagerWrapper<T> {}
|
38 |
// SAFETY: usage outside of main thread is guarded, we use the event loop on such cases.
|
39 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
40 |
unsafe impl Send for GlobalShortcutWrapper {}
|
50 |
// SAFETY: this is safe since the `Context` usage is guarded on `send_user_message`.
|
51 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
52 |
unsafe impl<T: UserEvent> Sync for GlobalShortcutManagerHandle<T> {}
|
255 |
// SAFETY: we ensure this type is only used on the main thread.
|
256 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
257 |
unsafe impl<T: UserEvent> Send for DispatcherMainThreadContext<T> {}
|
259 |
// SAFETY: we ensure this type is only used on the main thread.
|
260 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
261 |
unsafe impl<T: UserEvent> Sync for DispatcherMainThreadContext<T> {}
|
688 |
// SAFETY: this type is `Send` since `menu_items` are read only here
|
689 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
690 |
unsafe impl Send for WindowBuilderWrapper {}
|
998 |
))]
|
999 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
1000 |
unsafe impl Send for GtkWindow {}
|
1159 |
// SAFETY: this is safe since the `Context` usage is guarded on `send_user_message`.
|
1160 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
1161 |
unsafe impl<T: UserEvent> Sync for WryDispatcher<T> {}
|
21 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
22 |
unsafe impl<T: Send> Send for ThreadCell<T> {}
|
387 |
// https://github.com/hermitcore/uhyve/issues/229
|
388 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
389 |
unsafe impl Send for Uhyve {}
|
96 |
// always strictly null.
|
97 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
98 |
unsafe impl Send for HeaderData {}
|
288 |
// empty before we ship it to the render thread.
|
289 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
290 |
unsafe impl Send for DelayWriter {}
|
404 |
// empty before we ship it to the render thread.
|
405 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
406 |
unsafe impl Send for DelayReader {}
|
262 |
// empty before we ship it to the render thread.
|
263 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
264 |
unsafe impl Send for DynamicsCompressorRenderer {}
|
38 |
// Rc's in that thread.
|
39 |
#[allow(clippy::non_send_fields_in_send_ty)]
|
40 |
unsafe impl Send for Graph {}
|
1 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
2 |
use std::io;
|
5 |
#![allow(clippy::wrong_self_convention)]
|
6 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
7 |
#![doc = include_str!("../README.md")]
|
2 |
#![allow(
|
3 |
clippy::non_send_fields_in_send_ty,
|
4 |
clippy::cast_possible_wrap,
|
5 |
#![allow(clippy::derive_hash_xor_eq)]
|
6 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
7 |
#![allow(clippy::too_many_arguments)]
|
8 |
// False positives on thread-safe singletons
|
9 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
10 |
// Disable non-critical lints for generated code
|
25 |
clippy::missing_safety_doc,
|
26 |
clippy::non_send_fields_in_send_ty
|
27 |
)]
|
8 |
#![allow(clippy::upper_case_acronyms)]
|
9 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
10 |
#![doc = include_str!("../README.md")]
|
6 |
#![allow(clippy::wrong_self_convention)]
|
7 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
8 |
#![doc = include_str!("../README.md")]
|
7 |
// SPDX-License-Identifier: MPL-2.0
|
8 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
7 |
// SPDX-License-Identifier: MPL-2.0
|
8 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
9 |
// SPDX-License-Identifier: MIT OR Apache-2.0
|
10 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
9 |
// SPDX-License-Identifier: MIT OR Apache-2.0
|
10 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
7 |
// SPDX-License-Identifier: MPL-2.0
|
8 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
9 |
#![recursion_limit = "128"]
|
7 |
// SPDX-License-Identifier: MPL-2.0
|
8 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
9 |
// SPDX-License-Identifier: MIT OR Apache-2.0
|
10 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
7 |
// SPDX-License-Identifier: MPL-2.0
|
8 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
9 |
// SPDX-License-Identifier: MIT OR Apache-2.0
|
10 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
7 |
// SPDX-License-Identifier: MPL-2.0
|
8 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
9 |
// SPDX-License-Identifier: MIT OR Apache-2.0
|
10 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
10 |
// SPDX-License-Identifier: MPL-2.0
|
11 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
7 |
// SPDX-License-Identifier: MPL-2.0
|
8 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
9 |
// SPDX-License-Identifier: MIT OR Apache-2.0
|
10 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
7 |
// SPDX-License-Identifier: MPL-2.0
|
8 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
9 |
#![recursion_limit = "128"]
|
9 |
// SPDX-License-Identifier: MIT OR Apache-2.0
|
10 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
10 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
7 |
// SPDX-License-Identifier: MPL-2.0
|
8 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
7 |
// SPDX-License-Identifier: MPL-2.0
|
8 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
9 |
// SPDX-License-Identifier: MIT OR Apache-2.0
|
10 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
7 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
8 |
#![doc = include_str!("../README.md")]
|
9 |
// SPDX-License-Identifier: MIT OR Apache-2.0
|
10 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
7 |
// SPDX-License-Identifier: MPL-2.0
|
8 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
9 |
#![recursion_limit = "128"]
|
9 |
// SPDX-License-Identifier: MIT OR Apache-2.0
|
10 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
9 |
// SPDX-License-Identifier: MIT/Apache-2.0
|
10 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
7 |
// SPDX-License-Identifier: MPL-2.0
|
8 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
21 |
// SPDX-License-Identifier: MIT
|
22 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
7 |
// SPDX-License-Identifier: MPL-2.0
|
8 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
7 |
// SPDX-License-Identifier: MPL-2.0
|
8 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
7 |
// SPDX-License-Identifier: MPL-2.0
|
8 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
9 |
#![recursion_limit = "128"]
|
3 |
// Take a look at the license at the top of the repository in the LICENSE file.
|
4 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
19 |
// SPDX-License-Identifier: LGPL-2.1-or-later
|
20 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
7 |
// SPDX-License-Identifier: MPL-2.0
|
8 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
7 |
// SPDX-License-Identifier: MPL-2.0
|
8 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
7 |
// SPDX-License-Identifier: MPL-2.0
|
8 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
8 |
// SPDX-License-Identifier: MPL-2.0
|
9 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
7 |
// SPDX-License-Identifier: MPL-2.0
|
8 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
1 |
// SPDX-License-Identifier: MPL-2.0
|
2 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
9 |
// SPDX-License-Identifier: MPL-2.0
|
10 |
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
|
6 |
#![allow(clippy::manual_range_contains)]
|
7 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
8 |
#![doc = include_str!("../README.md")]
|
4 |
#![allow(clippy::missing_safety_doc)]
|
5 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
6 |
#![doc = include_str!("../README.md")]
|
4 |
#![allow(clippy::missing_safety_doc)]
|
5 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
6 |
#![doc = include_str!("../README.md")]
|
4 |
#![allow(clippy::missing_safety_doc)]
|
5 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
6 |
#![doc = include_str!("../README.md")]
|
4 |
#![allow(clippy::missing_safety_doc)]
|
5 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
6 |
#![doc = include_str!("../README.md")]
|
4 |
#![allow(clippy::missing_safety_doc)]
|
5 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
6 |
#![doc = include_str!("../README.md")]
|
4 |
#![allow(clippy::missing_safety_doc)]
|
5 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
6 |
#![doc = include_str!("../README.md")]
|
4 |
#![allow(clippy::missing_safety_doc)]
|
5 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
6 |
#![doc = include_str!("../README.md")]
|
4 |
#![allow(clippy::missing_safety_doc)]
|
5 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
6 |
#![doc = include_str!("../README.md")]
|
10 |
#![allow(clippy::missing_safety_doc)]
|
11 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
10 |
#![allow(clippy::missing_safety_doc)]
|
11 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
10 |
#![allow(clippy::missing_safety_doc)]
|
11 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
2 |
#![allow(clippy::missing_safety_doc)]
|
3 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
4 |
#![allow(clippy::missing_safety_doc)]
|
5 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
6 |
#![doc = include_str!("../README.md")]
|
4 |
#![allow(clippy::missing_safety_doc)]
|
5 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
6 |
#![doc = include_str!("../README.md")]
|
4 |
#![allow(clippy::missing_safety_doc)]
|
5 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
6 |
#![doc = include_str!("../README.md")]
|
4 |
#![allow(clippy::missing_safety_doc)]
|
5 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
6 |
#![doc = include_str!("../README.md")]
|
4 |
#![allow(clippy::manual_range_contains)]
|
5 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
6 |
#![allow(clippy::missing_safety_doc)]
|
4 |
#![allow(clippy::missing_safety_doc)]
|
5 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
6 |
#![doc = include_str!("../README.md")]
|
4 |
#![allow(clippy::missing_safety_doc)]
|
5 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
6 |
#![doc = include_str!("../README.md")]
|
4 |
#![allow(clippy::missing_safety_doc)]
|
5 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
6 |
#![doc = include_str!("../README.md")]
|
4 |
#![allow(clippy::missing_safety_doc)]
|
5 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
6 |
#![doc = include_str!("../README.md")]
|
4 |
#![allow(clippy::missing_safety_doc)]
|
5 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
6 |
#![doc = include_str!("../README.md")]
|
4 |
#![allow(clippy::missing_safety_doc)]
|
5 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
6 |
#![doc = include_str!("../README.md")]
|
4 |
#![allow(clippy::derive_hash_xor_eq)]
|
5 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
6 |
#![allow(clippy::too_many_arguments)]
|
1 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
167 |
clippy::wrong_self_convention,
|
168 |
clippy::non_send_fields_in_send_ty
|
169 |
)]
|
7 |
// hide warnings from the intrusive_collections crate
|
8 |
#![allow(unknown_lints, clippy::non_send_fields_in_send_ty)]
|
7 |
// hide warnings from the intrusive_collections crate
|
8 |
#![allow(unknown_lints, clippy::non_send_fields_in_send_ty)]
|
2 |
#![allow(clippy::upper_case_acronyms)]
|
3 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
4 |
// https://github.com/rust-lang/rust/issues/93367
|
1 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
2 |
use parking_lot::{lock_api::RawRwLock as _, RawRwLock, RwLock, RwLockReadGuard, RwLockWriteGuard};
|
7 |
#![allow(clippy::upper_case_acronyms)]
|
8 |
#![allow(clippy::non_send_fields_in_send_ty)]
|
9 |
#![allow(renamed_and_removed_lints)]
|
145 |
clippy::wrong_self_convention,
|
146 |
clippy::non_send_fields_in_send_ty
|
147 |
)]
|
37 |
// We unsafe impl `Send` for a reason.
|
38 |
clippy::non_send_fields_in_send_ty,
|
39 |
// TODO!
|