Searched defs:SyncWrapper (Results 1 – 1 of 1) sorted by relevance
6 pub(crate) struct SyncWrapper<T> { struct10 // safety: The SyncWrapper being send allows you to send the inner value across argument12 unsafe impl<T: Send> Send for SyncWrapper<T> {} implementation16 unsafe impl<T> Sync for SyncWrapper<T> {} implementation18 impl<T> SyncWrapper<T> { implementation