• arcon 0.2.1/src/index/hash_table/table.rs
    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> {}
  • bevy_ecs 0.9.1/src/world/mod.rs
    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
  • bevy_ui 0.9.1/src/flex/mod.rs
    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 {}
  • cosync 0.2.1/src/futures/futures_unordered.rs
    81
    #[allow(clippy::non_send_fields_in_send_ty)]
    82
    unsafe impl<Fut: Send> Send for FuturesUnordered<Fut> {}
  • cosync 0.2.1/src/futures/task.rs
    44
    // across different threads.
    45
    #[allow(clippy::non_send_fields_in_send_ty)]
    46
    unsafe impl<Fut> Send for Task<Fut> {}
  • cosync 0.2.1/src/lib.rs
    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> {}
  • deno_ffi 0.73.0/callback.rs
    59
    #[allow(clippy::non_send_fields_in_send_ty)]
    60
    // SAFETY: unsafe trait must have unsafe implementation
  • deno_ffi 0.73.0/symbol.rs
    76
    #[allow(clippy::non_send_fields_in_send_ty)]
    77
    // SAFETY: unsafe trait must have unsafe implementation
  • duckdb 0.6.1/src/cache.rs
    63
    #[allow(clippy::non_send_fields_in_send_ty)]
    64
    unsafe impl Send for StatementCache {}
  • exocore-core 0.1.24/src/dir/web.rs
    220
    #[allow(clippy::non_send_fields_in_send_ty)]
    221
    unsafe impl Send for Storage {}
  • fluence-faas 0.16.3/src/faas.rs
    50
    // TODO: remove and use mutex instead
    51
    #[allow(clippy::non_send_fields_in_send_ty)]
    52
    unsafe impl Send for FluenceFaaS {}
  • fragile 2.0.0/src/fragile.rs
    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> {}
  • futures-locks 0.7.1/src/mutex.rs
    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> {}
  • futures-locks 0.7.1/src/rwlock.rs
    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> {}
  • futuresdr 0.0.27/src/blocks/audio/audio_sink.rs
    31
    #[allow(clippy::non_send_fields_in_send_ty)]
    32
    unsafe impl Send for AudioSink {}
  • futuresdr 0.0.27/src/blocks/audio/audio_source.rs
    30
    #[allow(clippy::non_send_fields_in_send_ty)]
    31
    unsafe impl Send for AudioSource {}
  • futuresdr 0.0.27/src/runtime/buffer/circular.rs
    202
    #[allow(clippy::non_send_fields_in_send_ty)]
    203
    unsafe impl Send for Writer {}
  • git-packetline 0.14.1/src/read/sidebands/async_io.rs
    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 {}
  • grpcio 0.12.0/src/channel.rs
    625
    #[allow(clippy::non_send_fields_in_send_ty)]
    626
    unsafe impl Send for Channel {}
  • grpcio 0.12.0/src/server.rs
    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 {}
  • heph 0.4.0/src/actor_ref/mod.rs
    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> {}
  • kvarn-reference 0.4.0/src/hosts.rs
    25
    // That's the point!
    26
    #[allow(clippy::non_send_fields_in_send_ty)]
    27
    unsafe impl<F> Send for UnsafeSendSyncFuture<F> {}
  • libstrophe 0.17.0/src/alloc_context.rs
    98
    unsafe impl Sync for AllocContext {}
    99
    #[allow(clippy::non_send_fields_in_send_ty)]
    100
    unsafe impl Send for AllocContext {}
  • libstrophe 0.17.0/src/context.rs
    163
    #[allow(clippy::non_send_fields_in_send_ty)]
    164
    unsafe impl Send for Context<'_, '_> {}
  • lilv 0.2.1/src/world.rs
    18
    #[doc(hidden)]
    19
    #[allow(clippy::non_send_fields_in_send_ty)]
    20
    pub struct Life {
  • marine-runtime 0.24.0/src/marine.rs
    50
    // TODO: remove and use mutex instead
    51
    #[allow(clippy::non_send_fields_in_send_ty)]
    52
    unsafe impl Send for Marine {}
  • message-io 0.14.6/src/node.rs
    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> {}
  • millennium-runtime-webview 1.0.0-beta.3/src/clipboard.rs
    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> {}
  • millennium-runtime-webview 1.0.0-beta.3/src/global_shortcut.rs
    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> {}
  • millennium-runtime-webview 1.0.0-beta.3/src/lib.rs
    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 {}
  • mini-moka 0.10.0/src/sync/cache.rs
    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>
  • moka 0.9.6/src/common/concurrent/deques.rs
    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
  • moka 0.9.6/src/dash/cache.rs
    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>
  • moka 0.9.6/src/future/cache.rs
    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>
  • moka 0.9.6/src/sync/cache.rs
    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>
  • moka 0.9.6/src/sync/segment.rs
    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>
  • napi 2.10.14/src/async_work.rs
    94
    #[allow(clippy::non_send_fields_in_send_ty)]
    95
    unsafe impl<T: Task> Send for AsyncWork<T> {}
  • napi 2.10.14/src/js_values/value_ref.rs
    14
    #[allow(clippy::non_send_fields_in_send_ty)]
    15
    unsafe impl<T> Send for Ref<T> {}
  • nokhwa 0.10.3/src/js_camera.rs
    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 {}
  • oxigraph 0.3.11/src/storage/backend/rocksdb.rs
    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 {}
  • roa-core 0.6.1/src/app/future.rs
    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);
  • rusqlite 0.28.0/src/cache.rs
    63
    #[allow(clippy::non_send_fields_in_send_ty)]
    64
    unsafe impl Send for StatementCache {}
  • rusqlite-ic 0.28.1/src/cache.rs
    63
    #[allow(clippy::non_send_fields_in_send_ty)]
    64
    unsafe impl Send for StatementCache {}
  • s2n-quic-platform 0.16.0/src/message/mmsg.rs
    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> {}
  • s2n-quic-platform 0.16.0/src/message/msg.rs
    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> {}
  • s2n-quic-platform 0.16.0/src/message/simple.rs
    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> {}
  • s2n-quic-transport 0.16.0/src/stream/manager.rs
    417
    // outside of the container
    418
    #[allow(unknown_lints, clippy::non_send_fields_in_send_ty)]
    419
    unsafe impl<S> Send for AbstractStreamManager<S> {}
  • shipyard 0.6.2/src/atomic_refcell.rs
    26
    #[cfg(not(feature = "thread_local"))]
    27
    #[allow(clippy::non_send_fields_in_send_ty)]
    28
    unsafe impl<T: ?Sized> Send for AtomicRefCell<T> {}
  • starlark 0.8.0/src/values/layout/heap.rs
    90
    #[derive(Default)]
    91
    #[allow(clippy::non_send_fields_in_send_ty)]
    92
    struct FrozenFrozenHeap {
  • sysinfo 0.27.7/src/linux/process.rs
    313
    #[allow(clippy::non_send_fields_in_send_ty)]
    314
    unsafe impl<'a, T> Send for Wrap<'a, T> {}
  • sysinfo 0.27.7/src/windows/component.rs
    152
    #[allow(clippy::non_send_fields_in_send_ty)]
    153
    unsafe impl Send for Connection {}
  • sysinfo 0.27.7/src/windows/process.rs
    199
    #[allow(clippy::non_send_fields_in_send_ty)]
    200
    unsafe impl Send for HandleWrapper {}
  • sysinfo 0.27.7/src/windows/system.rs
    78
    #[allow(clippy::non_send_fields_in_send_ty)]
    79
    unsafe impl<T> Send for Wrap<T> {}
  • tauri-egui 0.1.1/src/plugin.rs
    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 {}
  • tauri-runtime-wry 0.13.0-alpha.0/src/clipboard.rs
    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> {}
  • tauri-runtime-wry 0.13.0-alpha.0/src/global_shortcut.rs
    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> {}
  • tauri-runtime-wry 0.13.0-alpha.0/src/lib.rs
    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> {}
  • threadcell 0.8.2/src/lib.rs
    21
    #[allow(clippy::non_send_fields_in_send_ty)]
    22
    unsafe impl<T: Send> Send for ThreadCell<T> {}
  • uhyve 0.2.1/src/linux/uhyve.rs
    387
    // https://github.com/hermitcore/uhyve/issues/229
    388
    #[allow(clippy::non_send_fields_in_send_ty)]
    389
    unsafe impl Send for Uhyve {}
  • unrar-async 0.1.12/src/open_archive/data.rs
    96
    // always strictly null.
    97
    #[allow(clippy::non_send_fields_in_send_ty)]
    98
    unsafe impl Send for HeaderData {}
  • web-audio-api 0.28.0/src/node/delay.rs
    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 {}
  • web-audio-api 0.28.0/src/node/dynamics_compressor.rs
    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 {}
  • web-audio-api 0.28.0/src/render/thread.rs
    38
    // Rc's in that thread.
    39
    #[allow(clippy::non_send_fields_in_send_ty)]
    40
    unsafe impl Send for Graph {}
  • awak 0.2.22/src/io/poller/mod.rs
    1
    #![allow(clippy::non_send_fields_in_send_ty)]
    2
    use std::io;
  • cairo-rs 0.16.7/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::non_send_fields_in_send_ty)]
    7
    #![doc = include_str!("../README.md")]
  • fsevent-stream 0.2.3/src/stream.rs
    2
    #![allow(
    3
        clippy::non_send_fields_in_send_ty,
    4
        clippy::cast_possible_wrap,
  • gdk4 0.5.5/src/lib.rs
    5
    #![allow(clippy::derive_hash_xor_eq)]
    6
    #![allow(clippy::non_send_fields_in_send_ty)]
    7
    #![allow(clippy::too_many_arguments)]
  • gdnative-bindings 0.11.3/src/lib.rs
    8
    // False positives on thread-safe singletons
    9
    #![allow(clippy::non_send_fields_in_send_ty)]
    10
    // Disable non-critical lints for generated code
  • gdnative-core 0.11.3/src/lib.rs
    25
        clippy::missing_safety_doc,
    26
        clippy::non_send_fields_in_send_ty
    27
    )]
  • gio 0.16.7/src/lib.rs
    8
    #![allow(clippy::upper_case_acronyms)]
    9
    #![allow(clippy::non_send_fields_in_send_ty)]
    10
    #![doc = include_str!("../README.md")]
  • glib 0.16.7/src/lib.rs
    6
    #![allow(clippy::wrong_self_convention)]
    7
    #![allow(clippy::non_send_fields_in_send_ty)]
    8
    #![doc = include_str!("../README.md")]
  • gst-plugin-audiofx 0.9.3/src/lib.rs
    7
    // SPDX-License-Identifier: MPL-2.0
    8
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-aws 0.9.6/src/lib.rs
    7
    // SPDX-License-Identifier: MPL-2.0
    8
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-cdg 0.9.0/src/lib.rs
    9
    // SPDX-License-Identifier: MIT OR Apache-2.0
    10
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-claxon 0.9.0/src/lib.rs
    9
    // SPDX-License-Identifier: MIT OR Apache-2.0
    10
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-closedcaption 0.9.3/src/lib.rs
    7
    // SPDX-License-Identifier: MPL-2.0
    8
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
    9
    #![recursion_limit = "128"]
  • gst-plugin-csound 0.9.3/src/lib.rs
    7
    // SPDX-License-Identifier: MPL-2.0
    8
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-dav1d 0.9.8/src/lib.rs
    9
    // SPDX-License-Identifier: MIT OR Apache-2.0
    10
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-fallbackswitch 0.9.1/src/lib.rs
    7
    // SPDX-License-Identifier: MPL-2.0
    8
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-file 0.9.1/src/lib.rs
    9
    // SPDX-License-Identifier: MIT OR Apache-2.0
    10
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-fmp4 0.9.5/src/lib.rs
    7
    // SPDX-License-Identifier: MPL-2.0
    8
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-gif 0.9.2/src/lib.rs
    9
    // SPDX-License-Identifier: MIT OR Apache-2.0
    10
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-gtk4 0.9.7/src/lib.rs
    10
    // SPDX-License-Identifier: MPL-2.0
    11
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-hlssink3 0.9.3/src/lib.rs
    7
    // SPDX-License-Identifier: MPL-2.0
    8
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-hsv 0.9.0/src/lib.rs
    9
    // SPDX-License-Identifier: MIT OR Apache-2.0
    10
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-json 0.9.2/src/lib.rs
    7
    // SPDX-License-Identifier: MPL-2.0
    8
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
    9
    #![recursion_limit = "128"]
  • gst-plugin-lewton 0.9.3/src/lib.rs
    9
    // SPDX-License-Identifier: MIT OR Apache-2.0
    10
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-livesync 0.9.6/src/lib.rs
    10
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-mp4 0.9.3/src/lib.rs
    7
    // SPDX-License-Identifier: MPL-2.0
    8
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-onvif 0.9.3/src/lib.rs
    7
    // SPDX-License-Identifier: MPL-2.0
    8
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-png 0.9.0/src/lib.rs
    9
    // SPDX-License-Identifier: MIT OR Apache-2.0
    10
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-raptorq 0.9.3/src/lib.rs
    7
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
    8
    #![doc = include_str!("../README.md")]
  • gst-plugin-rav1e 0.9.4/src/lib.rs
    9
    // SPDX-License-Identifier: MIT OR Apache-2.0
    10
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-regex 0.9.0/src/lib.rs
    7
    // SPDX-License-Identifier: MPL-2.0
    8
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
    9
    #![recursion_limit = "128"]
  • gst-plugin-reqwest 0.9.1/src/lib.rs
    9
    // SPDX-License-Identifier: MIT OR Apache-2.0
    10
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-rspng 0.8.1/src/lib.rs
    9
    // SPDX-License-Identifier: MIT/Apache-2.0
    10
    #![allow(clippy::non_send_fields_in_send_ty)]
  • gst-plugin-rusoto 0.8.4/src/lib.rs
    7
    // SPDX-License-Identifier: MPL-2.0
    8
    #![allow(clippy::non_send_fields_in_send_ty)]
  • gst-plugin-sodium 0.9.3/src/lib.rs
    21
    // SPDX-License-Identifier: MIT
    22
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-spotify 0.9.2/src/lib.rs
    7
    // SPDX-License-Identifier: MPL-2.0
    8
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-textahead 0.9.5/src/lib.rs
    7
    // SPDX-License-Identifier: MPL-2.0
    8
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-textwrap 0.9.3/src/lib.rs
    7
    // SPDX-License-Identifier: MPL-2.0
    8
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
    9
    #![recursion_limit = "128"]
  • gst-plugin-threadshare 0.9.3/src/lib.rs
    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)]
  • gst-plugin-threadshare 0.9.3/tests/pad.rs
    19
    // SPDX-License-Identifier: LGPL-2.1-or-later
    20
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-togglerecord 0.9.1/src/lib.rs
    7
    // SPDX-License-Identifier: MPL-2.0
    8
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-tracers 0.9.1/src/lib.rs
    7
    // SPDX-License-Identifier: MPL-2.0
    8
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-uriplaylistbin 0.9.3/src/lib.rs
    7
    // SPDX-License-Identifier: MPL-2.0
    8
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-videofx 0.9.3/src/lib.rs
    8
    // SPDX-License-Identifier: MPL-2.0
    9
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-webp 0.9.0/src/lib.rs
    7
    // SPDX-License-Identifier: MPL-2.0
    8
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-webrtc 0.9.6/src/lib.rs
    1
    // SPDX-License-Identifier: MPL-2.0
    2
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gst-plugin-webrtchttp 0.9.3/src/lib.rs
    9
    // SPDX-License-Identifier: MPL-2.0
    10
    #![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
  • gstreamer 0.19.7/src/lib.rs
    6
    #![allow(clippy::manual_range_contains)]
    7
    #![allow(clippy::non_send_fields_in_send_ty)]
    8
    #![doc = include_str!("../README.md")]
  • gstreamer-allocators 0.19.2/src/lib.rs
    4
    #![allow(clippy::missing_safety_doc)]
    5
    #![allow(clippy::non_send_fields_in_send_ty)]
    6
    #![doc = include_str!("../README.md")]
  • gstreamer-app 0.19.6/src/lib.rs
    4
    #![allow(clippy::missing_safety_doc)]
    5
    #![allow(clippy::non_send_fields_in_send_ty)]
    6
    #![doc = include_str!("../README.md")]
  • gstreamer-audio 0.19.4/src/lib.rs
    4
    #![allow(clippy::missing_safety_doc)]
    5
    #![allow(clippy::non_send_fields_in_send_ty)]
    6
    #![doc = include_str!("../README.md")]
  • gstreamer-base 0.19.3/src/lib.rs
    4
    #![allow(clippy::missing_safety_doc)]
    5
    #![allow(clippy::non_send_fields_in_send_ty)]
    6
    #![doc = include_str!("../README.md")]
  • gstreamer-check 0.19.2/src/lib.rs
    4
    #![allow(clippy::missing_safety_doc)]
    5
    #![allow(clippy::non_send_fields_in_send_ty)]
    6
    #![doc = include_str!("../README.md")]
  • gstreamer-controller 0.19.2/src/lib.rs
    4
    #![allow(clippy::missing_safety_doc)]
    5
    #![allow(clippy::non_send_fields_in_send_ty)]
    6
    #![doc = include_str!("../README.md")]
  • gstreamer-editing-services 0.19.4/src/lib.rs
    4
    #![allow(clippy::missing_safety_doc)]
    5
    #![allow(clippy::non_send_fields_in_send_ty)]
    6
    #![doc = include_str!("../README.md")]
  • gstreamer-gl 0.19.5/src/lib.rs
    4
    #![allow(clippy::missing_safety_doc)]
    5
    #![allow(clippy::non_send_fields_in_send_ty)]
    6
    #![doc = include_str!("../README.md")]
  • gstreamer-gl-egl 0.19.2/src/lib.rs
    10
    #![allow(clippy::missing_safety_doc)]
    11
    #![allow(clippy::non_send_fields_in_send_ty)]
  • gstreamer-gl-wayland 0.19.2/src/lib.rs
    10
    #![allow(clippy::missing_safety_doc)]
    11
    #![allow(clippy::non_send_fields_in_send_ty)]
  • gstreamer-gl-x11 0.19.2/src/lib.rs
    10
    #![allow(clippy::missing_safety_doc)]
    11
    #![allow(clippy::non_send_fields_in_send_ty)]
  • gstreamer-mpegts 0.19.2/src/lib.rs
    2
    #![allow(clippy::missing_safety_doc)]
    3
    #![allow(clippy::non_send_fields_in_send_ty)]
  • gstreamer-net 0.19.4/src/lib.rs
    4
    #![allow(clippy::missing_safety_doc)]
    5
    #![allow(clippy::non_send_fields_in_send_ty)]
    6
    #![doc = include_str!("../README.md")]
  • gstreamer-pbutils 0.19.2/src/lib.rs
    4
    #![allow(clippy::missing_safety_doc)]
    5
    #![allow(clippy::non_send_fields_in_send_ty)]
    6
    #![doc = include_str!("../README.md")]
  • gstreamer-play 0.19.4/src/lib.rs
    4
    #![allow(clippy::missing_safety_doc)]
    5
    #![allow(clippy::non_send_fields_in_send_ty)]
    6
    #![doc = include_str!("../README.md")]
  • gstreamer-player 0.19.4/src/lib.rs
    4
    #![allow(clippy::missing_safety_doc)]
    5
    #![allow(clippy::non_send_fields_in_send_ty)]
    6
    #![doc = include_str!("../README.md")]
  • gstreamer-rtp 0.19.4/src/lib.rs
    4
    #![allow(clippy::manual_range_contains)]
    5
    #![allow(clippy::non_send_fields_in_send_ty)]
    6
    #![allow(clippy::missing_safety_doc)]
  • gstreamer-rtsp 0.19.2/src/lib.rs
    4
    #![allow(clippy::missing_safety_doc)]
    5
    #![allow(clippy::non_send_fields_in_send_ty)]
    6
    #![doc = include_str!("../README.md")]
  • gstreamer-rtsp-server 0.19.2/src/lib.rs
    4
    #![allow(clippy::missing_safety_doc)]
    5
    #![allow(clippy::non_send_fields_in_send_ty)]
    6
    #![doc = include_str!("../README.md")]
  • gstreamer-sdp 0.19.4/src/lib.rs
    4
    #![allow(clippy::missing_safety_doc)]
    5
    #![allow(clippy::non_send_fields_in_send_ty)]
    6
    #![doc = include_str!("../README.md")]
  • gstreamer-validate 0.19.0/src/lib.rs
    4
    #![allow(clippy::missing_safety_doc)]
    5
    #![allow(clippy::non_send_fields_in_send_ty)]
    6
    #![doc = include_str!("../README.md")]
  • gstreamer-video 0.19.5/src/lib.rs
    4
    #![allow(clippy::missing_safety_doc)]
    5
    #![allow(clippy::non_send_fields_in_send_ty)]
    6
    #![doc = include_str!("../README.md")]
  • gstreamer-webrtc 0.19.3/src/lib.rs
    4
    #![allow(clippy::missing_safety_doc)]
    5
    #![allow(clippy::non_send_fields_in_send_ty)]
    6
    #![doc = include_str!("../README.md")]
  • gtk4 0.5.5/src/lib.rs
    4
    #![allow(clippy::derive_hash_xor_eq)]
    5
    #![allow(clippy::non_send_fields_in_send_ty)]
    6
    #![allow(clippy::too_many_arguments)]
  • haz-alloc 0.2.1/src/lib.rs
    1
    #![allow(clippy::non_send_fields_in_send_ty)]
  • millennium-core 1.0.0-beta.3/src/lib.rs
    167
    	clippy::wrong_self_convention,
    168
    	clippy::non_send_fields_in_send_ty
    169
    )]
  • s2n-quic-transport 0.16.0/src/connection/connection_container.rs
    7
    // hide warnings from the intrusive_collections crate
    8
    #![allow(unknown_lints, clippy::non_send_fields_in_send_ty)]
  • s2n-quic-transport 0.16.0/src/stream/stream_container.rs
    7
    // hide warnings from the intrusive_collections crate
    8
    #![allow(unknown_lints, clippy::non_send_fields_in_send_ty)]
  • skia-safe 0.58.0/src/lib.rs
    2
    #![allow(clippy::upper_case_acronyms)]
    3
    #![allow(clippy::non_send_fields_in_send_ty)]
    4
    // https://github.com/rust-lang/rust/issues/93367
  • starchart 0.19.0/src/atomics.rs
    1
    #![allow(clippy::non_send_fields_in_send_ty)]
    2
    use parking_lot::{lock_api::RawRwLock as _, RawRwLock, RwLock, RwLockReadGuard, RwLockWriteGuard};
  • sysinfo 0.27.7/src/lib.rs
    7
    #![allow(clippy::upper_case_acronyms)]
    8
    #![allow(clippy::non_send_fields_in_send_ty)]
    9
    #![allow(renamed_and_removed_lints)]
  • tao 0.17.0/src/lib.rs
    145
      clippy::wrong_self_convention,
    146
      clippy::non_send_fields_in_send_ty
    147
    )]
  • wgpu-hal 0.15.1/src/lib.rs
    37
        // We unsafe impl `Send` for a reason.
    38
        clippy::non_send_fields_in_send_ty,
    39
        // TODO!