1.0.0[][src]Trait concordium_std::marker::Send

pub unsafe auto trait Send { }

Types that can be transferred across thread boundaries.

This trait is automatically implemented when the compiler determines it's appropriate.

An example of a non-Send type is the reference-counting pointer rc::Rc. If two threads attempt to clone Rcs that point to the same reference-counted value, they might try to update the reference count at the same time, which is undefined behavior because Rc doesn't use atomic operations. Its cousin sync::Arc does use atomic operations (incurring some overhead) and thus is Send.

See the Nomicon for more details.

Implementations on Foreign Types

impl<'_, T> !Send for MutexGuard<'_, T> where
    T: ?Sized
[src]

impl<T> Send for SyncSender<T> where
    T: Send
[src]

impl !Send for Args[src]

impl<T> Send for Sender<T> where
    T: Send
[src]

impl<'a> Send for IoSlice<'a>[src]

impl<T> Send for Mutex<T> where
    T: Send + ?Sized
[src]

impl Send for Once[src]

impl<T> Send for JoinHandle<T>[src]

impl<'_, T> !Send for RwLockReadGuard<'_, T> where
    T: ?Sized
[src]

impl !Send for ArgsOs[src]

impl<T> Send for Receiver<T> where
    T: Send
[src]

impl<T> Send for RwLock<T> where
    T: Send + ?Sized
[src]

impl<'a> Send for IoSliceMut<'a>[src]

impl<T> Send for SyncOnceCell<T> where
    T: Send
[src]

impl<'_, T> !Send for RwLockWriteGuard<'_, T> where
    T: ?Sized
[src]

impl<T> Send for AtomicPtr<T>[src]

impl<T> Send for RefCell<T> where
    T: Send + ?Sized
[src]

impl<T> !Send for *const T where
    T: ?Sized
[src]

impl<T> !Send for NonNull<T> where
    T: ?Sized
[src]

NonNull pointers are not Send because the data they reference may be aliased.

impl<'_, T> Send for &'_ mut T where
    T: Send + ?Sized
[src]

impl<'_, T> Send for IterMut<'_, T> where
    T: Send
[src]

impl<'_, T> Send for &'_ T where
    T: Sync + ?Sized
[src]

impl<'_, T> Send for Iter<'_, T> where
    T: Sync
[src]

impl<T> !Send for *mut T where
    T: ?Sized
[src]

impl Send for Waker[src]

impl<T> Send for Empty<T>[src]

impl<T> Send for Cell<T> where
    T: Send + ?Sized
[src]

impl<T, A> Send for IntoIter<T, A> where
    T: Send,
    A: Send + Allocator
[src]

impl<T> !Send for Weak<T> where
    T: ?Sized
[src]

impl<'_> Send for Drain<'_>[src]

impl<'_, T, A> Send for Drain<'_, T, A> where
    T: Send,
    A: Send + Allocator
[src]

impl<T> Send for Weak<T> where
    T: Send + Sync + ?Sized
[src]

impl<T> Send for Arc<T> where
    T: Send + Sync + ?Sized
[src]

impl<T> !Send for Rc<T> where
    T: ?Sized
[src]

impl Send for isize[src]

impl<T> Send for [T] where
    T: Send
[src]

impl Send for [u8][src]

impl Send for char[src]

impl Send for u128[src]

impl Send for u16[src]

impl Send for i128[src]

impl Send for i16[src]

impl Send for str[src]

impl Send for f64[src]

impl Send for u64[src]

impl Send for u8[src]

impl Send for i64[src]

impl Send for i8[src]

impl<T, const N: usize> Send for [T; N] where
    T: Send
[src]

impl Send for bool[src]

impl Send for f32[src]

impl Send for u32[src]

impl Send for usize[src]

impl Send for i32[src]

Loading content...

Implementors

impl<'_, T> Send for concordium_std::collections::linked_list::Cursor<'_, T> where
    T: Sync
[src]

impl<'_, T> Send for CursorMut<'_, T> where
    T: Send
[src]

impl<'_, T> Send for concordium_std::collections::linked_list::Iter<'_, T> where
    T: Sync
[src]

impl<'_, T> Send for concordium_std::collections::linked_list::IterMut<'_, T> where
    T: Send
[src]

impl<'_, T> Send for concordium_std::collections::vec_deque::Drain<'_, T> where
    T: Send
[src]

impl<'_, T> Send for concordium_std::collections::vec_deque::IterMut<'_, T> where
    T: Send
[src]

impl<T> Send for LinkedList<T> where
    T: Send
[src]

Loading content...

Auto implementors

impl Send for TryReserveError[src]

impl Send for Infallible[src]

impl Send for Address[src]

impl Send for AmountParseError[src]

impl Send for ParseDurationError[src]

impl Send for SeekFrom[src]

impl Send for Fields[src]

impl Send for SizeLength[src]

impl Send for Type[src]

impl Send for ActionsTree[src]

impl Send for DefaultHasher[src]

impl Send for RandomState[src]

impl Send for PhantomPinned[src]

impl Send for Contract[src]

impl Send for Module[src]

impl Send for AccountAddress[src]

impl Send for Action[src]

impl Send for Amount[src]

impl Send for AttributeTag[src]

impl Send for AttributesCursor[src]

impl Send for ChainMetadata[src]

impl Send for ContractAddress[src]

impl Send for ContractState[src]

impl Send for Duration[src]

impl Send for Logger[src]

impl Send for Parameter[src]

impl Send for ParseError[src]

impl Send for PoliciesIterator[src]

impl Send for Reject[src]

impl Send for String[src]

impl Send for Timestamp[src]

impl Send for ChainMetaTest[src]

impl Send for LogRecorder[src]

impl Send for TestPolicy[src]

impl<'a, C> Send for ContextTest<'a, C> where
    C: Send
[src]

impl<'a, K> Send for concordium_std::collections::hash_set::Drain<'a, K> where
    K: Send
[src]

impl<'a, K> Send for concordium_std::collections::hash_set::Iter<'a, K> where
    K: Sync
[src]

impl<'a, K, F> Send for concordium_std::collections::hash_set::DrainFilter<'a, K, F> where
    F: Send,
    K: Send
[src]

impl<'a, K, V> Send for concordium_std::collections::btree_map::Entry<'a, K, V> where
    K: Send,
    V: Send
[src]

impl<'a, K, V> Send for concordium_std::collections::hash_map::Entry<'a, K, V> where
    K: Send,
    V: Send
[src]

impl<'a, K, V> Send for concordium_std::collections::btree_map::Iter<'a, K, V> where
    K: Sync,
    V: Sync
[src]

impl<'a, K, V> Send for concordium_std::collections::btree_map::IterMut<'a, K, V> where
    K: Send,
    V: Send
[src]

impl<'a, K, V> Send for concordium_std::collections::btree_map::Keys<'a, K, V> where
    K: Sync,
    V: Sync
[src]

impl<'a, K, V> Send for concordium_std::collections::btree_map::OccupiedEntry<'a, K, V> where
    K: Send,
    V: Send
[src]

impl<'a, K, V> Send for concordium_std::collections::btree_map::Range<'a, K, V> where
    K: Sync,
    V: Sync
[src]

impl<'a, K, V> Send for RangeMut<'a, K, V> where
    K: Send,
    V: Send
[src]

impl<'a, K, V> Send for concordium_std::collections::btree_map::VacantEntry<'a, K, V> where
    K: Send,
    V: Send
[src]

impl<'a, K, V> Send for concordium_std::collections::btree_map::Values<'a, K, V> where
    K: Sync,
    V: Sync
[src]

impl<'a, K, V> Send for concordium_std::collections::btree_map::ValuesMut<'a, K, V> where
    K: Send,
    V: Send
[src]

impl<'a, K, V> Send for concordium_std::collections::hash_map::Drain<'a, K, V> where
    K: Send,
    V: Send
[src]

impl<'a, K, V> Send for concordium_std::collections::hash_map::Iter<'a, K, V> where
    K: Sync,
    V: Sync
[src]

impl<'a, K, V> Send for concordium_std::collections::hash_map::IterMut<'a, K, V> where
    K: Send,
    V: Send
[src]

impl<'a, K, V> Send for concordium_std::collections::hash_map::Keys<'a, K, V> where
    K: Sync,
    V: Sync
[src]

impl<'a, K, V> Send for concordium_std::collections::hash_map::OccupiedEntry<'a, K, V> where
    K: Send,
    V: Send
[src]

impl<'a, K, V> Send for concordium_std::collections::hash_map::VacantEntry<'a, K, V> where
    K: Send,
    V: Send
[src]

impl<'a, K, V> Send for concordium_std::collections::hash_map::Values<'a, K, V> where
    K: Sync,
    V: Sync
[src]

impl<'a, K, V> Send for concordium_std::collections::hash_map::ValuesMut<'a, K, V> where
    K: Send,
    V: Send
[src]

impl<'a, K, V, F> Send for concordium_std::collections::btree_map::DrainFilter<'a, K, V, F> where
    F: Send,
    K: Send,
    V: Send
[src]

impl<'a, K, V, F> Send for concordium_std::collections::hash_map::DrainFilter<'a, K, V, F> where
    F: Send,
    K: Send,
    V: Send
[src]

impl<'a, K, V, S> Send for RawEntryMut<'a, K, V, S> where
    K: Send,
    S: Sync,
    V: Send
[src]

impl<'a, K, V, S> Send for RawEntryBuilder<'a, K, V, S> where
    K: Sync,
    S: Sync,
    V: Sync
[src]

impl<'a, K, V, S> Send for RawEntryBuilderMut<'a, K, V, S> where
    K: Send,
    S: Send,
    V: Send
[src]

impl<'a, K, V, S> Send for RawOccupiedEntryMut<'a, K, V, S> where
    K: Send,
    S: Sync,
    V: Send
[src]

impl<'a, K, V, S> Send for RawVacantEntryMut<'a, K, V, S> where
    K: Send,
    S: Sync,
    V: Send
[src]

impl<'a, T> Send for concordium_std::collections::binary_heap::Drain<'a, T> where
    T: Send
[src]

impl<'a, T> Send for DrainSorted<'a, T> where
    T: Send
[src]

impl<'a, T> Send for concordium_std::collections::binary_heap::Iter<'a, T> where
    T: Sync
[src]

impl<'a, T> Send for PeekMut<'a, T> where
    T: Send
[src]

impl<'a, T> Send for concordium_std::collections::btree_set::Difference<'a, T> where
    T: Sync
[src]

impl<'a, T> Send for concordium_std::collections::btree_set::Intersection<'a, T> where
    T: Sync
[src]

impl<'a, T> Send for concordium_std::collections::btree_set::Iter<'a, T> where
    T: Sync
[src]

impl<'a, T> Send for concordium_std::collections::btree_set::Range<'a, T> where
    T: Sync
[src]

impl<'a, T> Send for concordium_std::collections::btree_set::SymmetricDifference<'a, T> where
    T: Sync
[src]

impl<'a, T> Send for concordium_std::collections::btree_set::Union<'a, T> where
    T: Sync
[src]

impl<'a, T> Send for concordium_std::collections::vec_deque::Iter<'a, T> where
    T: Sync
[src]

impl<'a, T, F> !Send for concordium_std::collections::linked_list::DrainFilter<'a, T, F>[src]

impl<'a, T, F> Send for concordium_std::collections::btree_set::DrainFilter<'a, T, F> where
    F: Send,
    T: Send
[src]

impl<'a, T, S> Send for concordium_std::collections::hash_set::Difference<'a, T, S> where
    S: Sync,
    T: Sync
[src]

impl<'a, T, S> Send for concordium_std::collections::hash_set::Intersection<'a, T, S> where
    S: Sync,
    T: Sync
[src]

impl<'a, T, S> Send for concordium_std::collections::hash_set::SymmetricDifference<'a, T, S> where
    S: Sync,
    T: Sync
[src]

impl<'a, T, S> Send for concordium_std::collections::hash_set::Union<'a, T, S> where
    S: Sync,
    T: Sync
[src]

impl<Attributes> Send for Policy<Attributes> where
    Attributes: Send
[src]

impl<K> Send for concordium_std::collections::hash_set::IntoIter<K> where
    K: Send
[src]

impl<K, V> Send for concordium_std::collections::btree_map::IntoIter<K, V> where
    K: Send,
    V: Send
[src]

impl<K, V> Send for concordium_std::collections::btree_map::IntoKeys<K, V> where
    K: Send,
    V: Send
[src]

impl<K, V> Send for concordium_std::collections::btree_map::IntoValues<K, V> where
    K: Send,
    V: Send
[src]

impl<K, V> Send for concordium_std::collections::hash_map::IntoIter<K, V> where
    K: Send,
    V: Send
[src]

impl<K, V> Send for concordium_std::collections::hash_map::IntoKeys<K, V> where
    K: Send,
    V: Send
[src]

impl<K, V> Send for concordium_std::collections::hash_map::IntoValues<K, V> where
    K: Send,
    V: Send
[src]

impl<K, V> Send for BTreeMap<K, V> where
    K: Send,
    V: Send
[src]

impl<K, V, S> Send for HashMap<K, V, S> where
    K: Send,
    S: Send,
    V: Send
[src]

impl<T> Send for Bound<T> where
    T: Send
[src]

impl<T> Send for concordium_std::collections::binary_heap::IntoIter<T> where
    T: Send
[src]

impl<T> Send for IntoIterSorted<T> where
    T: Send
[src]

impl<T> Send for concordium_std::collections::btree_set::IntoIter<T> where
    T: Send
[src]

impl<T> Send for concordium_std::collections::linked_list::IntoIter<T> where
    T: Send
[src]

impl<T> Send for BTreeSet<T> where
    T: Send
[src]

impl<T> Send for BinaryHeap<T> where
    T: Send
[src]

impl<T> Send for VecDeque<T> where
    T: Send
[src]

impl<T> Send for concordium_std::collections::vec_deque::IntoIter<T> where
    T: Send
[src]

impl<T> Send for Discriminant<T> where
    <T as DiscriminantKind>::Discriminant: Send
[src]

impl<T> Send for concordium_std::Cursor<T> where
    T: Send
[src]

impl<T> Send for MaybeUninit<T> where
    T: Send
[src]

impl<T, A> Send for Vec<T, A> where
    A: Send,
    T: Send
[src]

impl<T, S> Send for HashSet<T, S> where
    S: Send,
    T: Send
[src]

impl<T: ?Sized> Send for PhantomData<T> where
    T: Send
[src]

impl<T: ?Sized> Send for ManuallyDrop<T> where
    T: Send
[src]

Loading content...