Trait core::marker::Send
[−]
[src]
pub unsafe trait Send { }
Types that can be transferred across thread boundaries.
This trait is automatically derived when the compiler determines it's appropriate.
Implementors
impl<T: Send + ?Sized> Send for Unique<T>
impl<T: ?Sized> !Send for Shared<T>
impl<'a, T: Sync + ?Sized> Send for &'a T
impl<'a, T: Send + ?Sized> Send for &'a mut T
impl<T: ?Sized> !Send for *const T
impl<T: ?Sized> !Send for *mut T
impl<T> Send for AtomicPtr<T>
impl<T> Send for Cell<T> where T: Send
impl<T: ?Sized> Send for RefCell<T> where T: Send
impl<'a, T: Sync> Send for Iter<'a, T>
impl<'a, T: Send> Send for IterMut<'a, T>
impl<T: ?Sized + Sync + Send> Send for Arc<T>
impl<T: ?Sized + Sync + Send> Send for Weak<T>
impl<T: ?Sized + Sync + Send> Send for ArcInner<T>
impl<T: ?Sized> !Send for Rc<T>
impl<T: ?Sized> !Send for Weak<T>
impl<T> Send for Arc<T> where T: Send + Sync + ?Sized
impl<T> Send for Weak<T> where T: Send + Sync + ?Sized
impl<T> Send for ArcInner<T> where T: Send + Sync + ?Sized
impl<T> !Send for Rc<T> where T: ?Sized
impl<T> !Send for Weak<T> where T: ?Sized
impl<K: Send, V: Send> Send for Root<K, V>
impl<'a, K: Sync + 'a, V: Sync + 'a, Type> Send for NodeRef<Immut<'a>, K, V, Type>
impl<'a, K: Send + 'a, V: Send + 'a, Type> Send for NodeRef<Mut<'a>, K, V, Type>
impl<K: Send, V: Send, Type> Send for NodeRef<Owned, K, V, Type>
impl<T: Send> Send for Rawlink<T>
impl<'a> Send for Drain<'a>
impl<T: Send> Send for IntoIter<T>
impl<'a, T: Send> Send for Drain<'a, T>
impl<'a, T: Send> Send for Drain<'a, T>
impl<T: ?Sized + Send> Send for Intex<T>