mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-18 02:38:28 +00:00
94 lines
1.7 KiB
Rust
94 lines
1.7 KiB
Rust
#![warn(clippy::non_send_field_in_send_ty)]
|
|
#![feature(extern_types)]
|
|
|
|
use std::cell::UnsafeCell;
|
|
use std::ptr::NonNull;
|
|
use std::sync::{Arc, Mutex};
|
|
|
|
// disrustor / RUSTSEC-2020-0150
|
|
pub struct RingBuffer<T> {
|
|
data: Vec<UnsafeCell<T>>,
|
|
capacity: usize,
|
|
mask: usize,
|
|
}
|
|
|
|
unsafe impl<T> Send for RingBuffer<T> {}
|
|
|
|
// noise_search / RUSTSEC-2020-0141
|
|
pub struct MvccRwLock<T> {
|
|
raw: *const T,
|
|
lock: Mutex<Box<T>>,
|
|
}
|
|
|
|
unsafe impl<T> Send for MvccRwLock<T> {}
|
|
|
|
// async-coap / RUSTSEC-2020-0124
|
|
pub struct ArcGuard<RC, T> {
|
|
inner: T,
|
|
head: Arc<RC>,
|
|
}
|
|
|
|
unsafe impl<RC, T: Send> Send for ArcGuard<RC, T> {}
|
|
|
|
// rusb / RUSTSEC-2020-0098
|
|
extern "C" {
|
|
type libusb_device_handle;
|
|
}
|
|
|
|
pub trait UsbContext {
|
|
// some user trait that does not guarantee `Send`
|
|
}
|
|
|
|
pub struct DeviceHandle<T: UsbContext> {
|
|
context: T,
|
|
handle: NonNull<libusb_device_handle>,
|
|
}
|
|
|
|
unsafe impl<T: UsbContext> Send for DeviceHandle<T> {}
|
|
|
|
// Raw pointers are allowed
|
|
extern "C" {
|
|
type SomeFfiType;
|
|
}
|
|
|
|
pub struct FpTest {
|
|
vec: Vec<*const SomeFfiType>,
|
|
}
|
|
|
|
unsafe impl Send for FpTest {}
|
|
|
|
// Check raw pointer false positive
|
|
#[allow(clippy::non_send_field_in_send_ty)]
|
|
pub struct AttrTest1<T>(T);
|
|
|
|
pub struct AttrTest2<T> {
|
|
#[allow(clippy::non_send_field_in_send_ty)]
|
|
field: T,
|
|
}
|
|
|
|
pub enum AttrTest3<T> {
|
|
#[allow(clippy::non_send_field_in_send_ty)]
|
|
Enum1(T),
|
|
Enum2(T),
|
|
}
|
|
|
|
unsafe impl<T> Send for AttrTest1<T> {}
|
|
unsafe impl<T> Send for AttrTest2<T> {}
|
|
unsafe impl<T> Send for AttrTest3<T> {}
|
|
|
|
pub struct MultiField<T> {
|
|
field1: T,
|
|
field2: T,
|
|
field3: T,
|
|
}
|
|
|
|
unsafe impl<T> Send for MultiField<T> {}
|
|
|
|
pub enum MyOption<T> {
|
|
MySome(T),
|
|
MyNone,
|
|
}
|
|
|
|
unsafe impl<T> Send for MyOption<T> {}
|
|
|
|
fn main() {}
|