pub type NotThreadSafe = PhantomData<*mut ()>;
Expand description
Zero-sized type to mark types not Send
.
Add this type as a field to your struct if your type should not be sent to a different task.
Since Send
is an auto trait, adding a single field that is !Send
will ensure that the
whole type is !Send
.
If a type is !Send
it is impossible to give control over an instance of the type to another
task. This is useful to include in types that store or reference task-local information. A file
descriptor is an example of such task-local information.
This type also makes the type !Sync
, which prevents immutable access to the value from
several threads in parallel.
Aliased Type§
struct NotThreadSafe;
Trait Implementations
1.0.0 · Source§impl<T> Clone for PhantomData<T>where
T: ?Sized,
impl<T> Clone for PhantomData<T>where
T: ?Sized,
Source§fn clone(&self) -> PhantomData<T>
fn clone(&self) -> PhantomData<T>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more1.0.0 · Source§impl<T> Debug for PhantomData<T>where
T: ?Sized,
impl<T> Debug for PhantomData<T>where
T: ?Sized,
1.0.0 · Source§impl<T> Default for PhantomData<T>where
T: ?Sized,
impl<T> Default for PhantomData<T>where
T: ?Sized,
Source§fn default() -> PhantomData<T>
fn default() -> PhantomData<T>
Returns the “default value” for a type. Read more
1.0.0 · Source§impl<T> Hash for PhantomData<T>where
T: ?Sized,
impl<T> Hash for PhantomData<T>where
T: ?Sized,
1.0.0 · Source§impl<T> Ord for PhantomData<T>where
T: ?Sized,
impl<T> Ord for PhantomData<T>where
T: ?Sized,
Source§fn cmp(&self, _other: &PhantomData<T>) -> Ordering
fn cmp(&self, _other: &PhantomData<T>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more