You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
341 B
15 lines
341 B
#![allow(dead_code, unused_macros)]
|
|
#![allow(box_pointers, unreachable_pub)]
|
|
#![allow(clippy::restriction)]
|
|
|
|
macro_rules! assert_unpin {
|
|
($ty:ty) => {
|
|
static_assertions::assert_impl_all!($ty: Unpin);
|
|
};
|
|
}
|
|
macro_rules! assert_not_unpin {
|
|
($ty:ty) => {
|
|
static_assertions::assert_not_impl_all!($ty: Unpin);
|
|
};
|
|
}
|