pub unsafe auto trait Sync { }
Expand description
Types for which it is safe to share references between threads.
This trait is automatically implemented when the compiler determines it’s appropriate.
The precise definition is: a type T
is Sync
if and only if &T
is
Send
. In other words, if there is no possibility of
undefined behavior (including data races) when passing
&T
references between threads.
As one would expect, primitive types like u8
and f64
are all Sync
, and so are simple aggregate types containing them,
like tuples, structs and enums. More examples of basic Sync
types include “immutable” types like &T
, and those with simple
inherited mutability, such as Box<T>
, Vec<T>
and
most other collection types. (Generic parameters need to be Sync
for their container to be Sync
.)
A somewhat surprising consequence of the definition is that &mut T
is Sync
(if T
is Sync
) even though it seems like that might
provide unsynchronized mutation. The trick is that a mutable
reference behind a shared reference (that is, & &mut T
)
becomes read-only, as if it were a & &T
. Hence there is no risk
of a data race.
A shorter overview of how Sync
and Send
relate to referencing:
&T
isSend
if and only ifT
isSync
&mut T
isSend
if and only ifT
isSend
&T
and&mut T
areSync
if and only ifT
isSync
Types that are not Sync
are those that have “interior
mutability” in a non-thread-safe form, such as Cell
and RefCell
. These types allow for mutation of
their contents even through an immutable, shared reference. For
example the set
method on Cell<T>
takes &self
, so it requires
only a shared reference &Cell<T>
. The method performs no
synchronization, thus Cell
cannot be Sync
.
Another example of a non-Sync
type is the reference-counting
pointer Rc
. Given any reference &Rc<T>
, you can clone
a new Rc<T>
, modifying the reference counts in a non-atomic way.
For cases when one does need thread-safe interior mutability,
Rust provides atomic data types, as well as explicit locking via
sync::Mutex
and sync::RwLock
. These types
ensure that any mutation cannot cause data races, hence the types
are Sync
. Likewise, sync::Arc
provides a thread-safe
analogue of Rc
.
Any types with interior mutability must also use the
cell::UnsafeCell
wrapper around the value(s) which
can be mutated through a shared reference. Failing to doing this is
undefined behavior. For example, transmute
-ing
from &T
to &mut T
is invalid.
See the Nomicon for more details about Sync
.
Implementors§
impl !Sync for rustmax::proc_macro::TokenTree
impl !Sync for ExpandError
impl !Sync for rustmax::proc_macro::Group
impl !Sync for rustmax::proc_macro::LexError
impl !Sync for rustmax::proc_macro::Punct
impl !Sync for rustmax::proc_macro::Span
impl !Sync for rustmax::proc_macro::TokenStream
impl !Sync for Args
impl !Sync for ArgsOs
impl !Sync for Arguments<'_>
impl !Sync for LocalWaker
impl Sync for atomic_waker::AtomicWaker
impl Sync for libloading::os::unix::Library
impl Sync for libloading::safe::Library
impl Sync for GuardNoSend
impl Sync for Asn1BitString
impl Sync for Asn1BitStringRef
impl Sync for Asn1Enumerated
impl Sync for Asn1EnumeratedRef
impl Sync for Asn1GeneralizedTime
impl Sync for Asn1GeneralizedTimeRef
impl Sync for Asn1Integer
impl Sync for Asn1IntegerRef
impl Sync for Asn1Object
impl Sync for Asn1ObjectRef
impl Sync for Asn1OctetString
impl Sync for Asn1OctetStringRef
impl Sync for Asn1String
impl Sync for Asn1StringRef
impl Sync for Asn1Time
impl Sync for Asn1TimeRef
impl Sync for BigNum
impl Sync for BigNumContext
impl Sync for BigNumContextRef
impl Sync for BigNumRef
impl Sync for openssl::cipher::Cipher
impl Sync for CipherRef
impl Sync for CipherCtx
impl Sync for CipherCtxRef
impl Sync for CmsContentInfo
impl Sync for CmsContentInfoRef
impl Sync for Conf
impl Sync for ConfRef
impl Sync for Deriver<'_>
impl Sync for DsaSig
impl Sync for DsaSigRef
impl Sync for EcGroup
impl Sync for EcGroupRef
impl Sync for EcPoint
impl Sync for EcPointRef
impl Sync for EcdsaSig
impl Sync for EcdsaSigRef
impl Sync for Decrypter<'_>
impl Sync for Encrypter<'_>
impl Sync for openssl::error::Error
impl Sync for openssl::hash::Hasher
impl Sync for MessageDigest
impl Sync for LibCtx
impl Sync for LibCtxRef
impl Sync for Md
impl Sync for MdRef
impl Sync for MdCtx
impl Sync for MdCtxRef
impl Sync for OcspBasicResponse
impl Sync for OcspBasicResponseRef
impl Sync for OcspCertId
impl Sync for OcspCertIdRef
impl Sync for OcspOneReq
impl Sync for OcspOneReqRef
impl Sync for OcspRequest
impl Sync for OcspRequestRef
impl Sync for OcspResponse
impl Sync for OcspResponseRef
impl Sync for Pkcs7
impl Sync for Pkcs7Ref
impl Sync for Pkcs7Signed
impl Sync for Pkcs7SignedRef
impl Sync for Pkcs7SignerInfo
impl Sync for Pkcs7SignerInfoRef
impl Sync for Pkcs12
impl Sync for Pkcs12Ref
impl Sync for Provider
impl Sync for ProviderRef
impl Sync for Signer<'_>
impl Sync for Verifier<'_>
impl Sync for SrtpProtectionProfile
impl Sync for SrtpProtectionProfileRef
impl Sync for Ssl
impl Sync for SslContext
impl Sync for SslContextRef
impl Sync for SslMethod
impl Sync for SslRef
impl Sync for SslSession
impl Sync for SslSessionRef
impl Sync for OpensslString
impl Sync for OpensslStringRef
impl Sync for openssl::symm::Cipher
impl Sync for X509Store
impl Sync for X509StoreBuilder
impl Sync for X509StoreBuilderRef
impl Sync for X509StoreRef
impl Sync for AccessDescription
impl Sync for AccessDescriptionRef
impl Sync for DistPoint
impl Sync for DistPointName
impl Sync for DistPointNameRef
impl Sync for DistPointRef
impl Sync for GeneralName
impl Sync for GeneralNameRef
impl Sync for X509
impl Sync for X509Algorithm
impl Sync for X509AlgorithmRef
impl Sync for X509Crl
impl Sync for X509CrlRef
impl Sync for X509Extension
impl Sync for X509ExtensionRef
impl Sync for X509Name
impl Sync for X509NameEntry
impl Sync for X509NameEntryRef
impl Sync for X509NameRef
impl Sync for X509Object
impl Sync for X509ObjectRef
impl Sync for X509Ref
impl Sync for X509Req
impl Sync for X509ReqRef
impl Sync for X509Revoked
impl Sync for X509RevokedRef
impl Sync for X509StoreContext
impl Sync for X509StoreContextRef
impl Sync for X509VerifyParam
impl Sync for X509VerifyParamRef
impl Sync for BytesMut
impl Sync for rustmax::core::ffi::c_str::Bytes<'_>
impl Sync for rustmax::crossbeam::channel::Select<'_>
impl Sync for Collector
impl Sync for Unparker
impl Sync for rustmax::crossbeam::thread::Scope<'_>
impl Sync for rustmax::futures::task::AtomicWaker
impl Sync for rustmax::hyper::body::Bytes
impl Sync for rustmax::std::string::Drain<'_>
impl Sync for AtomicBool
impl Sync for AtomicI8
impl Sync for AtomicI16
impl Sync for AtomicI32
impl Sync for AtomicI64
impl Sync for AtomicIsize
impl Sync for AtomicU8
impl Sync for AtomicU16
impl Sync for AtomicU32
impl Sync for AtomicU64
impl Sync for AtomicUsize
impl Sync for Waker
impl Sync for rustmax::tokio::task::AbortHandle
impl<'a> Sync for IoSlice<'a>
impl<'a> Sync for IoSliceMut<'a>
impl<'a> Sync for Notified<'a>
impl<'a, R, G, T> Sync for MappedReentrantMutexGuard<'a, R, G, T>
impl<'a, R, G, T> Sync for ReentrantMutexGuard<'a, R, G, T>
impl<'a, R, T> Sync for lock_api::mutex::MappedMutexGuard<'a, R, T>
impl<'a, R, T> Sync for lock_api::mutex::MutexGuard<'a, R, T>
impl<'a, R, T> Sync for lock_api::rwlock::MappedRwLockReadGuard<'a, R, T>
impl<'a, R, T> Sync for lock_api::rwlock::MappedRwLockWriteGuard<'a, R, T>
impl<'a, R, T> Sync for RwLockUpgradableReadGuard<'a, R, T>
impl<'a, T> Sync for OnceRef<'a, T>where
T: Sync,
impl<'a, T> Sync for smallvec::Drain<'a, T>
impl<'a, T> Sync for ZeroVec<'a, T>
impl<'a, T> Sync for rustmax::reqwest::header::Drain<'a, T>where
T: Sync,
impl<'a, T> Sync for rustmax::reqwest::header::Iter<'a, T>where
T: Sync,
impl<'a, T> Sync for rustmax::reqwest::header::IterMut<'a, T>where
T: Sync,
impl<'a, T> Sync for ValueDrain<'a, T>where
T: Sync,
impl<'a, T> Sync for ValueIterMut<'a, T>where
T: Sync,
impl<'a, T> Sync for rustmax::tokio::sync::MappedMutexGuard<'a, T>
impl<'a, T, const CAP: usize> Sync for arrayvec::arrayvec::Drain<'a, T, CAP>where
T: Sync,
impl<C> Sync for CartableOptionPointer<C>where
C: Send + CartablePointerLike,
impl<Dyn> Sync for DynMetadata<Dyn>where
Dyn: ?Sized,
impl<Fut> Sync for rustmax::futures::prelude::stream::futures_unordered::IntoIter<Fut>
impl<Fut> Sync for IterPinMut<'_, Fut>where
Fut: Sync,
impl<Fut> Sync for IterPinRef<'_, Fut>where
Fut: Sync,
impl<Fut> Sync for FuturesUnordered<Fut>
impl<K, V, S, A> Sync for hashbrown::map::OccupiedEntry<'_, K, V, S, A>
impl<R, G> Sync for RawReentrantMutex<R, G>
impl<R, G, T> Sync for ReentrantMutex<R, G, T>
impl<R, T> Sync for lock_api::mutex::Mutex<R, T>
impl<R, T> Sync for lock_api::rwlock::RwLock<R, T>
impl<R, T> Sync for lock_api::rwlock::RwLockReadGuard<'_, R, T>
impl<R, T> Sync for lock_api::rwlock::RwLockWriteGuard<'_, R, T>
impl<S> Sync for AllowStd<S>where
S: Sync,
impl<T> !Sync for *const Twhere
T: ?Sized,
impl<T> !Sync for *mut Twhere
T: ?Sized,
impl<T> !Sync for Cell<T>where
T: ?Sized,
impl<T> !Sync for rustmax::std::cell::OnceCell<T>
impl<T> !Sync for RefCell<T>where
T: ?Sized,
impl<T> !Sync for UnsafeCell<T>where
T: ?Sized,
impl<T> !Sync for NonNull<T>where
T: ?Sized,
NonNull
pointers are not Sync
because the data they reference may be aliased.
impl<T> !Sync for rustmax::std::sync::mpsc::Receiver<T>
impl<T> Sync for libloading::os::unix::Symbol<T>where
T: Sync,
impl<T> Sync for libloading::safe::Symbol<'_, T>where
T: Sync,
impl<T> Sync for OnceBox<T>
impl<T> Sync for Dh<T>
impl<T> Sync for DhRef<T>
impl<T> Sync for Dsa<T>
impl<T> Sync for DsaRef<T>
impl<T> Sync for EcKey<T>
impl<T> Sync for EcKeyRef<T>
impl<T> Sync for PKey<T>
impl<T> Sync for PKeyRef<T>
impl<T> Sync for PkeyCtx<T>
impl<T> Sync for PkeyCtxRef<T>
impl<T> Sync for Rsa<T>
impl<T> Sync for RsaRef<T>
impl<T> Sync for openssl::stack::Stack<T>
impl<T> Sync for StackRef<T>
impl<T> Sync for X509Lookup<T>
impl<T> Sync for X509LookupMethod<T>
impl<T> Sync for X509LookupMethodRef<T>
impl<T> Sync for X509LookupRef<T>
impl<T> Sync for SyncWrapper<T>
impl<T> Sync for ReusableBoxFuture<'_, T>
impl<T> Sync for TryLock<T>where
T: Send,
impl<T> Sync for AtomicCell<T>where
T: Send,
impl<T> Sync for rustmax::crossbeam::channel::Receiver<T>where
T: Send,
impl<T> Sync for rustmax::crossbeam::channel::Sender<T>where
T: Send,
impl<T> Sync for Injector<T>where
T: Send,
impl<T> Sync for Stealer<T>where
T: Send,
impl<T> Sync for Atomic<T>
impl<T> Sync for ArrayQueue<T>where
T: Send,
impl<T> Sync for SegQueue<T>where
T: Send,
impl<T> Sync for ShardedLock<T>
impl<T> Sync for ShardedLockReadGuard<'_, T>
impl<T> Sync for ShardedLockWriteGuard<'_, T>
impl<T> Sync for rustmax::crossbeam::thread::ScopedJoinHandle<'_, T>
impl<T> Sync for CachePadded<T>where
T: Sync,
impl<T> Sync for UniquePtr<T>where
T: Sync + UniquePtrTarget,
impl<T> Sync for WeakPtr<T>
impl<T> Sync for rustmax::futures::lock::Mutex<T>
impl<T> Sync for rustmax::futures::lock::MutexGuard<'_, T>
impl<T> Sync for MutexLockFuture<'_, T>where
T: ?Sized,
impl<T> Sync for rustmax::futures::lock::OwnedMutexGuard<T>
impl<T> Sync for OwnedMutexLockFuture<T>where
T: ?Sized,
impl<T> Sync for ThinBox<T>
ThinBox<T>
is Sync
if T
is Sync
because the data is owned.