1#[cfg(feature = "sync")] 2pub use core::marker::Sync as MaybeSync; 3 4#[cfg(not(feature = "sync"))] 5pub trait MaybeSync {} 6 7#[cfg(not(feature = "sync"))] 8impl<T> MaybeSync for T {}