Trait core::marker::Send
[−]
[src]
pub unsafe trait Send { }
Types that can be transferred across thread boundaries.
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>