Home
last modified time | relevance | path

Searched defs:SyncWrapper (Results 1 – 1 of 1) sorted by relevance

/external/rust/crates/tokio/src/util/
Dsync_wrapper.rs6 pub(crate) struct SyncWrapper<T> { struct
10 // safety: The SyncWrapper being send allows you to send the inner value across argument
12 unsafe impl<T: Send> Send for SyncWrapper<T> {} implementation
16 unsafe impl<T> Sync for SyncWrapper<T> {} implementation
18 impl<T> SyncWrapper<T> { implementation