mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-21 03:55:19 +00:00
13 lines
269 B
Rust
13 lines
269 B
Rust
#![allow(dead_code, unused_macros)]
|
|
|
|
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);
|
|
};
|
|
}
|