referrerpolicy=no-referrer-when-downgrade

Trait sp_std::marker::Freeze

source ·
pub unsafe auto trait Freeze { }
🔬This is a nightly-only experimental API. (freeze)
Expand description

Used to determine whether a type contains any UnsafeCell internally, but not through an indirection. This affects, for example, whether a static of that type is placed in read-only static memory or writable static memory. This can be used to declare that a constant with a generic type will not contain interior mutability, and subsequently allow placing the constant behind references.

§Safety

This trait is a core part of the language, it is just expressed as a trait in libcore for convenience. Do not implement it for other types.

Implementors§

source§

impl<T> !Freeze for UnsafeCell<T>
where T: ?Sized,

source§

impl<T> Freeze for *const T
where T: ?Sized,

source§

impl<T> Freeze for *mut T
where T: ?Sized,

source§

impl<T> Freeze for &T
where T: ?Sized,

source§

impl<T> Freeze for &mut T
where T: ?Sized,

1.28.0 · source§

impl<T> Freeze for NonZero<T>

source§

impl<T> Freeze for PhantomData<T>
where T: ?Sized,

Auto implementors§

§

impl !Freeze for AtomicBool

§

impl !Freeze for AtomicI8

§

impl !Freeze for AtomicI16

§

impl !Freeze for AtomicI32

§

impl !Freeze for AtomicI64

§

impl !Freeze for AtomicIsize

§

impl !Freeze for AtomicU8

§

impl !Freeze for AtomicU16

§

impl !Freeze for AtomicU32

§

impl !Freeze for AtomicU64

§

impl !Freeze for AtomicUsize

§

impl !Freeze for Barrier

§

impl !Freeze for Condvar

§

impl !Freeze for sp_std::sync::Once

§

impl !Freeze for OnceState

§

impl Freeze for sp_std::cmp::Ordering

§

impl Freeze for Infallible

§

impl Freeze for sp_std::fmt::Alignment

§

impl Freeze for FpCategory

§

impl Freeze for IntErrorKind

§

impl Freeze for SearchStep

§

impl Freeze for sp_std::sync::atomic::Ordering

§

impl Freeze for RecvTimeoutError

§

impl Freeze for TryRecvError

§

impl Freeze for AllocError

§

impl Freeze for Global

§

impl Freeze for Layout

§

impl Freeze for LayoutError

§

impl Freeze for System

§

impl Freeze for TypeId

§

impl Freeze for BorrowError

§

impl Freeze for BorrowMutError

§

impl Freeze for UnorderedKeyError

§

impl Freeze for Error

§

impl Freeze for DefaultHasher

§

impl Freeze for RandomState

§

impl Freeze for SipHasher

§

impl Freeze for Assume

§

impl Freeze for ParseFloatError

§

impl Freeze for ParseIntError

§

impl Freeze for TryFromIntError

§

impl Freeze for RangeFull

§

impl Freeze for sp_std::ptr::Alignment

§

impl Freeze for ParseBoolError

§

impl Freeze for Utf8Error

§

impl Freeze for Writer

§

impl Freeze for RecvError

§

impl Freeze for BarrierWaitResult

§

impl Freeze for WaitTimeoutResult

§

impl Freeze for Duration

§

impl Freeze for TryFromFloatSecsError

§

impl Freeze for PhantomPinned

§

impl Freeze for Maybe

§

impl Freeze for NoRuntime

§

impl Freeze for Runtime

§

impl<'a> Freeze for Arguments<'a>

§

impl<'a> Freeze for Formatter<'a>

§

impl<'a> Freeze for EscapeAscii<'a>

§

impl<'a> Freeze for CharSearcher<'a>

§

impl<'a> Freeze for Bytes<'a>

§

impl<'a> Freeze for CharIndices<'a>

§

impl<'a> Freeze for Chars<'a>

§

impl<'a> Freeze for EncodeUtf16<'a>

§

impl<'a> Freeze for EscapeDebug<'a>

§

impl<'a> Freeze for EscapeDefault<'a>

§

impl<'a> Freeze for EscapeUnicode<'a>

§

impl<'a> Freeze for Lines<'a>

§

impl<'a> Freeze for LinesAny<'a>

§

impl<'a> Freeze for SplitAsciiWhitespace<'a>

§

impl<'a> Freeze for SplitWhitespace<'a>

§

impl<'a> Freeze for Utf8Chunk<'a>

§

impl<'a> Freeze for Utf8Chunks<'a>

§

impl<'a, 'b> Freeze for DebugList<'a, 'b>

§

impl<'a, 'b> Freeze for DebugMap<'a, 'b>

§

impl<'a, 'b> Freeze for DebugSet<'a, 'b>

§

impl<'a, 'b> Freeze for DebugStruct<'a, 'b>

§

impl<'a, 'b> Freeze for DebugTuple<'a, 'b>

§

impl<'a, 'b> Freeze for CharSliceSearcher<'a, 'b>

§

impl<'a, 'b> Freeze for StrSearcher<'a, 'b>

§

impl<'a, 'b, const N: usize> Freeze for CharArrayRefSearcher<'a, 'b, N>

§

impl<'a, B> Freeze for Cow<'a, B>
where <B as ToOwned>::Owned: Freeze, B: ?Sized,

§

impl<'a, F> Freeze for CharPredicateSearcher<'a, F>
where F: Freeze,

§

impl<'a, I> Freeze for ByRefSized<'a, I>

§

impl<'a, I, A> Freeze for Splice<'a, I, A>
where I: Freeze,

§

impl<'a, K, V> Freeze for Cursor<'a, K, V>

§

impl<'a, K, V> Freeze for sp_std::collections::btree_map::Iter<'a, K, V>

§

impl<'a, K, V> Freeze for sp_std::collections::btree_map::IterMut<'a, K, V>

§

impl<'a, K, V> Freeze for Keys<'a, K, V>

§

impl<'a, K, V> Freeze for sp_std::collections::btree_map::Range<'a, K, V>

§

impl<'a, K, V> Freeze for RangeMut<'a, K, V>

§

impl<'a, K, V> Freeze for Values<'a, K, V>

§

impl<'a, K, V> Freeze for ValuesMut<'a, K, V>

§

impl<'a, K, V, A> Freeze for Entry<'a, K, V, A>
where K: Freeze, A: Freeze,

§

impl<'a, K, V, A> Freeze for CursorMut<'a, K, V, A>

§

impl<'a, K, V, A> Freeze for CursorMutKey<'a, K, V, A>

§

impl<'a, K, V, A> Freeze for OccupiedEntry<'a, K, V, A>
where A: Freeze,

§

impl<'a, K, V, A> Freeze for OccupiedError<'a, K, V, A>
where V: Freeze, A: Freeze,

§

impl<'a, K, V, A> Freeze for VacantEntry<'a, K, V, A>
where K: Freeze, A: Freeze,

§

impl<'a, K, V, F, A> Freeze for sp_std::collections::btree_map::ExtractIf<'a, K, V, F, A>
where F: Freeze, A: Freeze,

§

impl<'a, P> Freeze for MatchIndices<'a, P>
where <P as Pattern<'a>>::Searcher: Freeze,

§

impl<'a, P> Freeze for Matches<'a, P>
where <P as Pattern<'a>>::Searcher: Freeze,

§

impl<'a, P> Freeze for RMatchIndices<'a, P>
where <P as Pattern<'a>>::Searcher: Freeze,

§

impl<'a, P> Freeze for RMatches<'a, P>
where <P as Pattern<'a>>::Searcher: Freeze,

§

impl<'a, P> Freeze for sp_std::str::RSplit<'a, P>
where <P as Pattern<'a>>::Searcher: Freeze,

§

impl<'a, P> Freeze for sp_std::str::RSplitN<'a, P>
where <P as Pattern<'a>>::Searcher: Freeze,

§

impl<'a, P> Freeze for RSplitTerminator<'a, P>
where <P as Pattern<'a>>::Searcher: Freeze,

§

impl<'a, P> Freeze for sp_std::str::Split<'a, P>
where <P as Pattern<'a>>::Searcher: Freeze,

§

impl<'a, P> Freeze for sp_std::str::SplitInclusive<'a, P>
where <P as Pattern<'a>>::Searcher: Freeze,

§

impl<'a, P> Freeze for sp_std::str::SplitN<'a, P>
where <P as Pattern<'a>>::Searcher: Freeze,

§

impl<'a, P> Freeze for SplitTerminator<'a, P>
where <P as Pattern<'a>>::Searcher: Freeze,

§

impl<'a, T> Freeze for sp_std::collections::btree_set::Iter<'a, T>

§

impl<'a, T> Freeze for sp_std::collections::btree_set::Range<'a, T>

§

impl<'a, T> Freeze for SymmetricDifference<'a, T>

§

impl<'a, T> Freeze for Union<'a, T>

§

impl<'a, T> Freeze for sp_std::collections::vec_deque::Iter<'a, T>

§

impl<'a, T> Freeze for sp_std::collections::vec_deque::IterMut<'a, T>

§

impl<'a, T> Freeze for sp_std::result::Iter<'a, T>

§

impl<'a, T> Freeze for sp_std::result::IterMut<'a, T>

§

impl<'a, T> Freeze for Chunks<'a, T>

§

impl<'a, T> Freeze for ChunksExact<'a, T>

§

impl<'a, T> Freeze for ChunksExactMut<'a, T>

§

impl<'a, T> Freeze for ChunksMut<'a, T>

§

impl<'a, T> Freeze for sp_std::slice::Iter<'a, T>

§

impl<'a, T> Freeze for sp_std::slice::IterMut<'a, T>

§

impl<'a, T> Freeze for RChunks<'a, T>

§

impl<'a, T> Freeze for RChunksExact<'a, T>

§

impl<'a, T> Freeze for RChunksExactMut<'a, T>

§

impl<'a, T> Freeze for RChunksMut<'a, T>

§

impl<'a, T> Freeze for Windows<'a, T>

§

impl<'a, T> Freeze for sp_std::sync::mpsc::Iter<'a, T>

§

impl<'a, T> Freeze for TryIter<'a, T>

§

impl<'a, T> Freeze for MappedMutexGuard<'a, T>
where T: ?Sized,

§

impl<'a, T> Freeze for MappedRwLockReadGuard<'a, T>
where T: ?Sized,

§

impl<'a, T> Freeze for MappedRwLockWriteGuard<'a, T>
where T: ?Sized,

§

impl<'a, T> Freeze for MutexGuard<'a, T>
where T: ?Sized,

§

impl<'a, T> Freeze for ReentrantLockGuard<'a, T>
where T: ?Sized,

§

impl<'a, T> Freeze for RwLockReadGuard<'a, T>
where T: ?Sized,

§

impl<'a, T> Freeze for RwLockWriteGuard<'a, T>
where T: ?Sized,

§

impl<'a, T, A> Freeze for Difference<'a, T, A>

§

impl<'a, T, A> Freeze for Intersection<'a, T, A>

§

impl<'a, T, A> Freeze for sp_std::collections::vec_deque::Drain<'a, T, A>

§

impl<'a, T, A> Freeze for sp_std::vec::Drain<'a, T, A>

§

impl<'a, T, F, A> Freeze for sp_std::collections::btree_set::ExtractIf<'a, T, F, A>
where F: Freeze, A: Freeze,

§

impl<'a, T, F, A> Freeze for sp_std::vec::ExtractIf<'a, T, F, A>
where F: Freeze,

§

impl<'a, T, P> Freeze for ChunkBy<'a, T, P>
where P: Freeze,

§

impl<'a, T, P> Freeze for ChunkByMut<'a, T, P>
where P: Freeze,

§

impl<'a, T, P> Freeze for sp_std::slice::RSplit<'a, T, P>
where P: Freeze,

§

impl<'a, T, P> Freeze for RSplitMut<'a, T, P>
where P: Freeze,

§

impl<'a, T, P> Freeze for sp_std::slice::RSplitN<'a, T, P>
where P: Freeze,

§

impl<'a, T, P> Freeze for RSplitNMut<'a, T, P>
where P: Freeze,

§

impl<'a, T, P> Freeze for sp_std::slice::Split<'a, T, P>
where P: Freeze,

§

impl<'a, T, P> Freeze for sp_std::slice::SplitInclusive<'a, T, P>
where P: Freeze,

§

impl<'a, T, P> Freeze for SplitInclusiveMut<'a, T, P>
where P: Freeze,

§

impl<'a, T, P> Freeze for SplitMut<'a, T, P>
where P: Freeze,

§

impl<'a, T, P> Freeze for sp_std::slice::SplitN<'a, T, P>
where P: Freeze,

§

impl<'a, T, P> Freeze for SplitNMut<'a, T, P>
where P: Freeze,

§

impl<'a, T, const N: usize> Freeze for sp_std::slice::ArrayChunks<'a, T, N>

§

impl<'a, T, const N: usize> Freeze for ArrayChunksMut<'a, T, N>

§

impl<'a, T, const N: usize> Freeze for ArrayWindows<'a, T, N>

§

impl<'a, const N: usize> Freeze for CharArraySearcher<'a, N>

§

impl<'b, T> Freeze for Ref<'b, T>
where T: ?Sized,

§

impl<'b, T> Freeze for RefMut<'b, T>
where T: ?Sized,

§

impl<A> Freeze for Repeat<A>
where A: Freeze,

§

impl<A> Freeze for RepeatN<A>
where A: Freeze,

§

impl<A, B> Freeze for Chain<A, B>
where A: Freeze, B: Freeze,

§

impl<A, B> Freeze for Zip<A, B>
where A: Freeze, B: Freeze,

§

impl<B, C> Freeze for ControlFlow<B, C>
where C: Freeze, B: Freeze,

§

impl<Dyn> Freeze for DynMetadata<Dyn>
where Dyn: ?Sized,

§

impl<F> Freeze for FormatterFn<F>
where F: Freeze,

§

impl<F> Freeze for FromFn<F>
where F: Freeze,

§

impl<F> Freeze for OnceWith<F>
where F: Freeze,

§

impl<F> Freeze for RepeatWith<F>
where F: Freeze,

§

impl<H> Freeze for BuildHasherDefault<H>

§

impl<I> Freeze for Cloned<I>
where I: Freeze,

§

impl<I> Freeze for Copied<I>
where I: Freeze,

§

impl<I> Freeze for Cycle<I>
where I: Freeze,

§

impl<I> Freeze for Enumerate<I>
where I: Freeze,

§

impl<I> Freeze for Flatten<I>
where <<I as Iterator>::Item as IntoIterator>::IntoIter: Freeze, I: Freeze,

§

impl<I> Freeze for Fuse<I>
where I: Freeze,

§

impl<I> Freeze for Intersperse<I>
where <I as Iterator>::Item: Sized + Freeze, I: Freeze,

§

impl<I> Freeze for Peekable<I>
where I: Freeze, <I as Iterator>::Item: Freeze,

§

impl<I> Freeze for Skip<I>
where I: Freeze,

§

impl<I> Freeze for StepBy<I>
where I: Freeze,

§

impl<I> Freeze for Take<I>
where I: Freeze,

§

impl<I, F> Freeze for FilterMap<I, F>
where I: Freeze, F: Freeze,

§

impl<I, F> Freeze for Inspect<I, F>
where I: Freeze, F: Freeze,

§

impl<I, F> Freeze for Map<I, F>
where I: Freeze, F: Freeze,

§

impl<I, F, const N: usize> Freeze for MapWindows<I, F, N>
where F: Freeze, I: Freeze, <I as Iterator>::Item: Freeze,

§

impl<I, G> Freeze for IntersperseWith<I, G>
where G: Freeze, <I as Iterator>::Item: Freeze, I: Freeze,

§

impl<I, P> Freeze for Filter<I, P>
where I: Freeze, P: Freeze,

§

impl<I, P> Freeze for MapWhile<I, P>
where I: Freeze, P: Freeze,

§

impl<I, P> Freeze for SkipWhile<I, P>
where I: Freeze, P: Freeze,

§

impl<I, P> Freeze for TakeWhile<I, P>
where I: Freeze, P: Freeze,

§

impl<I, St, F> Freeze for Scan<I, St, F>
where I: Freeze, F: Freeze, St: Freeze,

§

impl<I, U, F> Freeze for FlatMap<I, U, F>
where <U as IntoIterator>::IntoIter: Freeze, I: Freeze, F: Freeze,

§

impl<I, const N: usize> Freeze for sp_std::iter::ArrayChunks<I, N>
where I: Freeze, <I as Iterator>::Item: Freeze,

§

impl<Idx> Freeze for sp_std::ops::Range<Idx>
where Idx: Freeze,

§

impl<Idx> Freeze for RangeFrom<Idx>
where Idx: Freeze,

§

impl<Idx> Freeze for RangeInclusive<Idx>
where Idx: Freeze,

§

impl<Idx> Freeze for RangeTo<Idx>
where Idx: Freeze,

§

impl<Idx> Freeze for RangeToInclusive<Idx>
where Idx: Freeze,

§

impl<K, V, A> Freeze for BTreeMap<K, V, A>
where A: Freeze,

§

impl<K, V, A> Freeze for sp_std::collections::btree_map::IntoIter<K, V, A>
where A: Freeze,

§

impl<K, V, A> Freeze for IntoKeys<K, V, A>
where A: Freeze,

§

impl<K, V, A> Freeze for IntoValues<K, V, A>
where A: Freeze,

§

impl<T> !Freeze for Cell<T>

§

impl<T> !Freeze for OnceCell<T>

§

impl<T> !Freeze for RefCell<T>

§

impl<T> !Freeze for SyncUnsafeCell<T>

§

impl<T> !Freeze for AtomicPtr<T>

§

impl<T> !Freeze for Mutex<T>

§

impl<T> !Freeze for OnceLock<T>

§

impl<T> !Freeze for ReentrantLock<T>

§

impl<T> !Freeze for RwLock<T>

§

impl<T> Freeze for Bound<T>
where T: Freeze,

§

impl<T> Freeze for TryLockError<T>
where T: Freeze,

§

impl<T> Freeze for TrySendError<T>
where T: Freeze,

§

impl<T> Freeze for ThinBox<T>
where T: ?Sized,

§

impl<T> Freeze for Reverse<T>
where T: Freeze,

§

impl<T> Freeze for Empty<T>

§

impl<T> Freeze for sp_std::iter::Once<T>
where T: Freeze,

§

impl<T> Freeze for Rev<T>
where T: Freeze,

§

impl<T> Freeze for Discriminant<T>

§

impl<T> Freeze for ManuallyDrop<T>
where T: Freeze + ?Sized,

§

impl<T> Freeze for Saturating<T>
where T: Freeze,

§

impl<T> Freeze for Wrapping<T>
where T: Freeze,

§

impl<T> Freeze for Yeet<T>
where T: Freeze,

§

impl<T> Freeze for NonNull<T>
where T: ?Sized,

§

impl<T> Freeze for sp_std::result::IntoIter<T>
where T: Freeze,

§

impl<T> Freeze for sp_std::sync::mpsc::IntoIter<T>

§

impl<T> Freeze for Receiver<T>

§

impl<T> Freeze for SendError<T>
where T: Freeze,

§

impl<T> Freeze for Sender<T>

§

impl<T> Freeze for SyncSender<T>

§

impl<T> Freeze for Exclusive<T>
where T: Freeze + ?Sized,

§

impl<T> Freeze for PoisonError<T>
where T: Freeze,

§

impl<T> Freeze for MaybeUninit<T>
where T: Freeze,

§

impl<T, A> Freeze for Box<T, A>
where A: Freeze, T: ?Sized,

§

impl<T, A> Freeze for BTreeSet<T, A>
where A: Freeze,

§

impl<T, A> Freeze for sp_std::collections::btree_set::IntoIter<T, A>
where A: Freeze,

§

impl<T, A> Freeze for sp_std::collections::vec_deque::IntoIter<T, A>
where A: Freeze,

§

impl<T, A> Freeze for VecDeque<T, A>
where A: Freeze,

§

impl<T, A> Freeze for Rc<T, A>
where A: Freeze, T: ?Sized,

§

impl<T, A> Freeze for UniqueRc<T, A>
where A: Freeze, T: ?Sized,

§

impl<T, A> Freeze for sp_std::rc::Weak<T, A>
where A: Freeze, T: ?Sized,

§

impl<T, A> Freeze for Arc<T, A>
where A: Freeze, T: ?Sized,

§

impl<T, A> Freeze for sp_std::sync::Weak<T, A>
where A: Freeze, T: ?Sized,

§

impl<T, A> Freeze for sp_std::vec::IntoIter<T, A>
where A: Freeze,

§

impl<T, A> Freeze for Vec<T, A>
where A: Freeze,

§

impl<T, E> Freeze for Result<T, E>
where T: Freeze, E: Freeze,

§

impl<T, F = fn() -> T> !Freeze for LazyCell<T, F>

§

impl<T, F = fn() -> T> !Freeze for LazyLock<T, F>

§

impl<T, F> Freeze for Successors<T, F>
where F: Freeze, T: Freeze,

§

impl<Y, R> Freeze for CoroutineState<Y, R>
where Y: Freeze, R: Freeze,