referrerpolicy=no-referrer-when-downgrade
sp_std::marker

Trait 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<'a> Freeze for Utf8Pattern<'a>

§

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> Freeze for sp_std::collections::btree_set::Cursor<'a, K>

§

impl<'a, K, A> Freeze for sp_std::collections::btree_set::CursorMut<'a, K, A>

§

impl<'a, K, A> Freeze for sp_std::collections::btree_set::CursorMutKey<'a, K, A>

§

impl<'a, K, V> Freeze for sp_std::collections::btree_map::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 sp_std::collections::btree_map::CursorMut<'a, K, V, A>

§

impl<'a, K, V, A> Freeze for sp_std::collections::btree_map::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>::Searcher<'a>: Freeze,

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<'a, P> Freeze for SplitTerminator<'a, P>
where <P as Pattern>::Searcher<'a>: 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::mpmc::Iter<'a, T>

§

impl<'a, T> Freeze for sp_std::sync::mpmc::TryIter<'a, T>

§

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

§

impl<'a, T> Freeze for sp_std::sync::mpsc::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 sp_std::fmt::FromFn<F>
where F: Freeze,

§

impl<F> Freeze for sp_std::iter::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 SendTimeoutError<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::mpmc::IntoIter<T>

§

impl<T> Freeze for sp_std::sync::mpmc::Receiver<T>

§

impl<T> Freeze for sp_std::sync::mpmc::Sender<T>

§

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

§

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

§

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

§

impl<T> Freeze for sp_std::sync::mpsc::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,

impl Freeze for Cli

impl Freeze for RunCmd

impl<N> Freeze for AssetHubRococo<N>

impl Freeze for ProxyType

impl Freeze for Offset

impl Freeze for Period

impl Freeze for PotId

impl Freeze for Runtime

impl Freeze for Version

impl Freeze for XcmConfig

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl<N> Freeze for AssetHubWestend<N>

impl Freeze for ProxyType

impl Freeze for Offset

impl Freeze for Period

impl Freeze for PotId

impl Freeze for Runtime

impl Freeze for Version

impl Freeze for XcmConfig

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl<AssetsAllowedNetworks, OriginLocation> Freeze for RemoteAssetFromLocation<AssetsAllowedNetworks, OriginLocation>

impl<Equivalence, AssetId, L> Freeze for LocalFromLeft<Equivalence, AssetId, L>

impl<IsForeign> Freeze for IsForeignConcreteAsset<IsForeign>

impl<IsForeign, AccountOf, AccountId, L> Freeze for ForeignCreators<IsForeign, AccountOf, AccountId, L>

impl<Runtime> Freeze for PoolAdapter<Runtime>

impl<SelfParaId, L> Freeze for FromSiblingParachain<SelfParaId, L>

impl<Target, L> Freeze for TargetFromLeft<Target, L>

impl<Target, SelfParaId, PalletId, L> Freeze for AssetPairFactory<Target, SelfParaId, PalletId, L>

impl<UniversalLocation, ExpectedNetworkId, L> Freeze for FromNetwork<UniversalLocation, ExpectedNetworkId, L>

impl Freeze for Action

impl<'a, H> Freeze for Leaf<'a, H>
where H: Freeze,

impl<H, L> Freeze for MerkleProof<H, L>
where H: Freeze, L: Freeze,

impl Freeze for Call

impl Freeze for Call

impl<BlockNumber, BlockHash, MmrHash> Freeze for ImportedCommitment<BlockNumber, BlockHash, MmrHash>
where MmrHash: Freeze, BlockNumber: Freeze, BlockHash: Freeze,

impl<BlockNumber, Hash> Freeze for InitializationData<BlockNumber, Hash>
where BlockNumber: Freeze, Hash: Freeze,

impl Freeze for Error

impl Freeze for Error

impl<'a, Header> Freeze for EquivocationsCollector<'a, Header>

impl<FinalityProof, FinalityVerificationContext> Freeze for HeaderFinalityInfo<FinalityProof, FinalityVerificationContext>
where FinalityProof: Freeze, FinalityVerificationContext: Freeze,

impl<H> Freeze for InitializationData<H>

impl<Header> Freeze for BridgeGrandpaCall<Header>
where <Header as Header>::Hash: Freeze, <Header as Header>::Number: Freeze,

impl<Header> Freeze for AncestryChain<Header>
where <Header as Header>::Number: Freeze, <Header as Header>::Hash: Freeze,

impl<Header> Freeze for GrandpaJustification<Header>
where <Header as Header>::Hash: Freeze, <Header as Header>::Number: Freeze,

impl<N> Freeze for SubmitFinalityProofInfo<N>
where N: Freeze,

impl<Number> Freeze for GrandpaConsensusLogReader<Number>

impl<Number, Hash> Freeze for StoredHeaderData<Number, Hash>
where Number: Freeze, Hash: Freeze,

impl Freeze for LaneState

impl<AccountId, MessagesProof, MessagesDeliveryProof> Freeze for BridgeMessagesCall<AccountId, MessagesProof, MessagesDeliveryProof>
where AccountId: Freeze, MessagesProof: Freeze, MessagesDeliveryProof: Freeze,

impl<BridgedHeaderHash, Lane> Freeze for FromBridgedChainMessagesProof<BridgedHeaderHash, Lane>
where BridgedHeaderHash: Freeze, Lane: Freeze,

impl<BridgedHeaderHash, LaneId> Freeze for FromBridgedChainMessagesDeliveryProof<BridgedHeaderHash, LaneId>
where BridgedHeaderHash: Freeze, LaneId: Freeze,

impl<DispatchLevelResult> Freeze for ReceptionResult<DispatchLevelResult>
where DispatchLevelResult: Freeze,

impl<DispatchLevelResult, LaneId> Freeze for ReceivedMessages<DispatchLevelResult, LaneId>
where LaneId: Freeze,

impl<DispatchPayload> Freeze for DispatchMessageData<DispatchPayload>
where DispatchPayload: Freeze,

impl<DispatchPayload, LaneId> Freeze for DispatchMessage<DispatchPayload, LaneId>
where LaneId: Freeze, DispatchPayload: Freeze,

impl<DispatchPayload, LaneId> Freeze for ForbidInboundMessages<DispatchPayload, LaneId>

impl<LaneId> Freeze for MessagesCallInfo<LaneId>
where LaneId: Freeze,

impl<LaneId> Freeze for BaseMessagesProofInfo<LaneId>
where LaneId: Freeze,

impl<LaneId> Freeze for Message<LaneId>
where LaneId: Freeze,

impl<LaneId> Freeze for MessageKey<LaneId>
where LaneId: Freeze,

impl<LaneId> Freeze for ReceiveMessagesDeliveryProofInfo<LaneId>
where LaneId: Freeze,

impl<LaneId> Freeze for ReceiveMessagesProofInfo<LaneId>
where LaneId: Freeze,

impl<Message> Freeze for ProvedLaneMessages<Message>

impl<RelayerId> Freeze for InboundLaneData<RelayerId>

impl<RelayerId> Freeze for UnrewardedRelayer<RelayerId>
where RelayerId: Freeze,

impl Freeze for ParaInfo

impl Freeze for ParaHead

impl Freeze for ParaId

impl<AccountId, LaneId> Freeze for ExplicitOrAccountParams<AccountId, LaneId>
where AccountId: Freeze, LaneId: Freeze,

impl<AccountId, Reward, RewardBalance> Freeze for RelayerRewardsKeyProvider<AccountId, Reward, RewardBalance>

impl<BlockNumber, Balance> Freeze for Registration<BlockNumber, Balance>
where BlockNumber: Freeze, Balance: Freeze,

impl<LaneId> Freeze for RewardsAccountParams<LaneId>
where LaneId: Freeze,

impl<RemoteGrandpaChainBlockNumber, LaneId> Freeze for ExtensionCallInfo<RemoteGrandpaChainBlockNumber, LaneId>
where RemoteGrandpaChainBlockNumber: Freeze, LaneId: Freeze,

impl<Runtime> Freeze for RuntimeWithUtilityPallet<Runtime>

impl<T, Relayer, LaneId, RewardBalance> Freeze for PayRewardFromAccount<T, Relayer, LaneId, RewardBalance>

impl Freeze for Rococo

impl<B, V> Freeze for BoundedStorageValue<B, V>
where V: Freeze,

impl<BlockNumber, BlockHash> Freeze for TransactionEra<BlockNumber, BlockHash>
where BlockNumber: Freeze, BlockHash: Freeze,

impl<ChainCall> Freeze for EncodedOrDecodedCall<ChainCall>
where ChainCall: Freeze,

impl<DispatchLevelResult> Freeze for MessageDispatchResult<DispatchLevelResult>
where DispatchLevelResult: Freeze,

impl<H> Freeze for StorageProofChecker<H>
where <H as Hasher>::Out: Freeze,

impl<Hash, Number> Freeze for HeaderId<Hash, Number>
where Number: Freeze, Hash: Freeze,

impl<Para> Freeze for ParachainIdOf<Para>

impl Freeze for Account

impl Freeze for Westend

impl Freeze for BridgeId

impl<ThisChain, LaneId> Freeze for Bridge<ThisChain, LaneId>
where <ThisChain as Chain>::AccountId: Freeze, <ThisChain as Chain>::Balance: Freeze, LaneId: Freeze,

impl<FromOrigin, ToGlobalConsensus> Freeze for DenyExportMessageFrom<FromOrigin, ToGlobalConsensus>

impl<Inner> Freeze for NarrowOriginToSibling<Inner>

impl<Version, RemoteBridge> Freeze for XcmVersionOfDestAndRemoteBridge<Version, RemoteBridge>

impl<XcmpProcessor, SnowbridgeProcessor> Freeze for BridgeHubMessageRouter<XcmpProcessor, SnowbridgeProcessor>

impl<XcmpProcessor, SnowbridgeProcessor, SnowbridgeProcessorV2> Freeze for BridgeHubDualMessageRouter<XcmpProcessor, SnowbridgeProcessor, SnowbridgeProcessorV2>

impl<N> Freeze for BridgeHubRococo<N>

impl Freeze for PotId

impl Freeze for Runtime

impl Freeze for Version

impl Freeze for XcmConfig

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl<T, I> Freeze for FixMessagesV1Migration<T, I>

impl<WaivedLocations, HandleFee> Freeze for XcmFeeManagerFromComponentsBridgeHub<WaivedLocations, HandleFee>

impl<Runtime, AllPalletsWithoutSystem, GPI, MPI, RPI> Freeze for WithRemoteGrandpaChainHelperAdapter<Runtime, AllPalletsWithoutSystem, GPI, MPI, RPI>

impl<Runtime, AllPalletsWithoutSystem, GPI, PPI, MPI, RPI> Freeze for WithRemoteParachainHelperAdapter<Runtime, AllPalletsWithoutSystem, GPI, PPI, MPI, RPI>

impl<N> Freeze for BridgeHubWestend<N>

impl Freeze for PotId

impl Freeze for Runtime

impl Freeze for Version

impl Freeze for XcmConfig

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl<T, I> Freeze for FixMessagesV1Migration<T, I>

impl<WaivedLocations, HandleFee> Freeze for XcmFeeManagerFromComponentsBridgeHub<WaivedLocations, HandleFee>

impl<T, I, Priority, SlashAccount> Freeze for CheckAndBoostBridgeGrandpaTransactions<T, I, Priority, SlashAccount>

impl<T, ParachainsInstance, Para, Priority, SlashAccount> Freeze for CheckAndBoostBridgeParachainsTransactions<T, ParachainsInstance, Para, Priority, SlashAccount>

impl Freeze for FooEnum

impl Freeze for FooStruct

impl Freeze for Runtime

impl Freeze for Version

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl<T> Freeze for Call<T>

impl<T> Freeze for Call<T>

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::AccountId: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for GenesisConfig<T>

impl<T> Freeze for Pallet<T>

impl<N> Freeze for CollectivesWestend<N>

impl Freeze for Origin

impl Freeze for ProxyType

impl Freeze for Origin

impl Freeze for Fellows

impl Freeze for Masters

impl Freeze for Members

impl Freeze for ToVoice

impl Freeze for Burn

impl Freeze for Interior

impl Freeze for PotId

impl Freeze for Runtime

impl Freeze for Version

impl Freeze for AssetHub

impl Freeze for XcmConfig

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl<Fungible> Freeze for RankToSalary<Fungible>

impl<I> Freeze for OpenHrmpChannel<I>

impl<O, E> Freeze for PayWithEnsure<O, E>

impl<T> Freeze for Call<T>

impl<T> Freeze for Call<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T, I> Freeze for AllianceProposalProvider<T, I>

impl<N> Freeze for CoretimeRococo<N>

impl Freeze for ProxyType

impl Freeze for PotId

impl Freeze for Runtime

impl Freeze for Version

impl Freeze for XcmConfig

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl<N> Freeze for CoretimeWestend<N>

impl Freeze for ProxyType

impl Freeze for PotId

impl Freeze for Runtime

impl Freeze for Version

impl Freeze for XcmConfig

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl Freeze for RunCmd

impl<Block, BS, RA> Freeze for CollatorService<Block, BS, RA>

impl<Block, BS, RA> Freeze for Collator<Block, BS, RA>

impl<Block, RA, BS, Spawner> Freeze for StartCollatorParams<Block, RA, BS, Spawner>
where Spawner: Freeze,

impl<'a, I, C, CIDP, S> Freeze for ImportQueueParams<'a, I, C, CIDP, S>
where I: Freeze, CIDP: Freeze,

impl<B, CIDP, W> Freeze for AuraConsensus<B, CIDP, W>

impl<BI, CIDP, Client, Backend, RClient, CHP, Proposer, CS> Freeze for Params<BI, CIDP, Client, Backend, RClient, CHP, Proposer, CS>
where CIDP: Freeze, BI: Freeze, RClient: Freeze, CHP: Freeze, Proposer: Freeze, CS: Freeze,

impl<BI, CIDP, Client, Backend, RClient, CHP, Proposer, CS> Freeze for ParamsWithExport<BI, CIDP, Client, Backend, RClient, CHP, Proposer, CS>
where CIDP: Freeze, BI: Freeze, RClient: Freeze, CHP: Freeze, Proposer: Freeze, CS: Freeze,

impl<BI, CIDP, Client, RClient, Proposer, CS> Freeze for Params<BI, CIDP, Client, RClient, Proposer, CS>
where CIDP: Freeze, BI: Freeze, RClient: Freeze, Proposer: Freeze, CS: Freeze,

impl<BI, CIDP, RClient, Proposer, CS> Freeze for Params<BI, CIDP, RClient, Proposer, CS>
where CIDP: Freeze, BI: Freeze, RClient: Freeze, Proposer: Freeze, CS: Freeze,

impl<Block> Freeze for SlotBasedBlockImportHandle<Block>

impl<Block, BI, CIDP, Client, Backend, RClient, CHP, Proposer, CS, Spawner> Freeze for Params<Block, BI, CIDP, Client, Backend, RClient, CHP, Proposer, CS, Spawner>
where CIDP: Freeze, BI: Freeze, RClient: Freeze, CHP: Freeze, Proposer: Freeze, CS: Freeze, Spawner: Freeze,

impl<Block, BI, Client> Freeze for SlotBasedBlockImport<Block, BI, Client>
where BI: Freeze,

impl<Block, P, BI, CIDP, RClient, Proposer, CS> Freeze for Collator<Block, P, BI, CIDP, RClient, Proposer, CS>
where CIDP: Freeze, BI: Freeze, RClient: Freeze, Proposer: Freeze, CS: Freeze,

impl<C, CIDP> Freeze for BuildVerifierParams<C, CIDP>
where CIDP: Freeze,

impl<P, Client, Block, CIDP> !Freeze for Verifier<P, Client, Block, CIDP>

impl<PF, BI, CIDP, Client, BS, SO> Freeze for BuildAuraConsensusParams<PF, BI, CIDP, Client, BS, SO>
where PF: Freeze, CIDP: Freeze, BI: Freeze, SO: Freeze, BS: Freeze,

impl<Pub> Freeze for SlotClaim<Pub>
where Pub: Freeze,

impl<B> Freeze for ParachainCandidate<B>
where B: Freeze,

impl<B> Freeze for PotentialParent<B>
where <B as Block>::Hash: Freeze, <B as Block>::Header: Freeze,

impl<Block, BI, BE> Freeze for ParachainBlockImport<Block, BI, BE>
where BI: Freeze,

impl Freeze for Error

impl<B, T> Freeze for Proposer<B, T>
where T: Freeze,

impl<B, PF, BI, RCInterface, CIDP> Freeze for RelayChainConsensus<B, PF, BI, RCInterface, CIDP>
where RCInterface: Freeze,

impl<Client, Block, CIDP> Freeze for Verifier<Client, Block, CIDP>
where CIDP: Freeze,

impl<PF, BI, CIDP, RCInterface> Freeze for BuildRelayChainConsensusParams<PF, BI, CIDP, RCInterface>
where PF: Freeze, CIDP: Freeze, BI: Freeze, RCInterface: Freeze,

impl<Block> Freeze for WaitToAnnounce<Block>

impl<Block, RCInterface> Freeze for RequireSecondedInBlockAnnounce<Block, RCInterface>
where RCInterface: Freeze,

impl<Block> Freeze for RecoveryRequest<Block>
where <Block as Block>::Hash: Freeze,

impl<Block, PC, RC> !Freeze for PoVRecovery<Block, PC, RC>

impl<'a, Block, BS, Client, RCInterface, Spawner> Freeze for StartCollatorParams<'a, Block, BS, Client, RCInterface, Spawner>
where Spawner: Freeze, RCInterface: Freeze,

impl<'a, Block, Client, Network, RCInterface, IQ> Freeze for BuildNetworkParams<'a, Block, Client, Network, RCInterface, IQ>
where RCInterface: Freeze, IQ: Freeze, <Network as NetworkBackend<Block, <Block as Block>::Hash>>::PeerStore: Freeze,

impl<'a, Block, Client, RCInterface> Freeze for StartFullNodeParams<'a, Block, Client, RCInterface>
where RCInterface: Freeze,

impl<'a, Block, Client, RCInterface> Freeze for StartRelayChainTasksParams<'a, Block, Client, RCInterface>
where RCInterface: Freeze,

impl<T> Freeze for Call<T>

impl<T> Freeze for GenesisConfig<T>

impl<T> Freeze for Pallet<T>

impl<T, I> Freeze for BlockExecutor<T, I>

impl<T, const RELAY_CHAIN_SLOT_DURATION_MILLIS: u32, const V: u32, const C: u32> Freeze for FixedVelocityConsensusHook<T, RELAY_CHAIN_SLOT_DURATION_MILLIS, V, C>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for Error

impl<H> Freeze for Ancestor<H>
where H: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Migration<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for ParachainSetCode<T>

impl<T> Freeze for SubstrateWeight<T>

impl<T> Freeze for Pallet<T>
where <T as Config>::RuntimeEvent: Sized,

impl Freeze for Event

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Call<T>

impl<T> Freeze for Pallet<T>

impl<T, S> Freeze for StorageWeightReclaim<T, S>
where S: Freeze,

impl Freeze for Origin

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<Runtime> Freeze for InAndOutXcmpChannelStatusProvider<Runtime>

impl<Runtime> Freeze for OutXcmpChannelStatusProvider<Runtime>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for UncheckedMigrationToV2<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for UncheckedMigrationToV3<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for UncheckedMigrationToV4<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for PingCount

impl Freeze for Pings

impl Freeze for Targets

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Pallet<T>

impl Freeze for Cli

impl<Block> Freeze for ParachainBlockData<Block>
where Block: Freeze,

impl<AccountId, FeeCharger, Matcher, ConcreteAssets, HandleRefund> Freeze for TakeFirstAssetTrader<AccountId, FeeCharger, Matcher, ConcreteAssets, HandleRefund>

impl<FungiblesMutateAdapter, AccountId, ReceiverAccount> Freeze for XcmFeesTo32ByteAccount<FungiblesMutateAdapter, AccountId, ReceiverAccount>

impl<T, W, P> Freeze for ParentAsUmp<T, W, P>

impl<Target, SwapCredit, WeightToFee, Fungibles, FungiblesAssetMatcher, OnUnbalanced, AccountId> Freeze for SwapFirstAssetTrader<Target, SwapCredit, WeightToFee, Fungibles, FungiblesAssetMatcher, OnUnbalanced, AccountId>
where <Fungibles as Inspect<AccountId>>::Balance: Sized + Freeze, <Fungibles as Inspect<AccountId>>::AssetId: Freeze,

impl<XcmConfig, ExistentialDeposit, PriceForDelivery> Freeze for ToParentDeliveryHelper<XcmConfig, ExistentialDeposit, PriceForDelivery>

impl Freeze for Offset

impl Freeze for PotId

impl Freeze for Runtime

impl Freeze for Version

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl Freeze for Consensus

impl Freeze for TestNode

impl<S, SI, T, TI> Freeze for BridgeHubMessageHandler<S, SI, T, TI>

impl<P> Freeze for FinalityProofsBuf<P>

impl<P, SC> Freeze for FinalityProofsStream<P, SC>

impl<E> Freeze for Error<E>
where E: Freeze,

impl<H, N, V> Freeze for ForkTree<H, N, V>
where N: Freeze,

impl<V> Freeze for FinalizationResult<V>
where V: Freeze,

impl Freeze for Analysis

impl<'a> Freeze for BenchmarkRecording<'a>

impl<T> Freeze for Pallet<T>

impl<const A: u32, const B: u32> Freeze for Linear<A, B>

impl Freeze for BlockCmd

impl Freeze for PalletCmd

impl Freeze for Map16M

impl Freeze for Map1M

impl Freeze for Value

impl Freeze for Value2

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl Freeze for Error

impl Freeze for SizeBound

impl<AccountId, Accuracy> Freeze for QuickDirtySolver<AccountId, Accuracy>

impl<AccountId, Accuracy, Balancing> Freeze for PhragMMS<AccountId, Accuracy, Balancing>

impl<AccountId, Accuracy, Balancing> Freeze for SequentialPhragmen<AccountId, Accuracy, Balancing>

impl<AccountId, BOuter, BInner> Freeze for BoundedSupports<AccountId, BOuter, BInner>

impl<AccountId, Bound> Freeze for BoundedSupport<AccountId, Bound>

impl<T> Freeze for OnChainExecution<T>

impl<T> Freeze for SubstrateWeight<T>

impl<VoterIndex, TargetIndex, P> Freeze for IndexAssignment<VoterIndex, TargetIndex, P>
where VoterIndex: Freeze,

impl<X> Freeze for NoElection<X>

impl<System, Block, Context, UnsignedValidator, AllPalletsWithSystem, OnRuntimeUpgrade> Freeze for Executive<System, Block, Context, UnsignedValidator, AllPalletsWithSystem, OnRuntimeUpgrade>

impl<T> Freeze for CheckMetadataHash<T>

impl Freeze for Command

impl Freeze for V1Command

impl Freeze for Transport

impl<B> !Freeze for RemoteExternalities<B>

impl<B> Freeze for Builder<B>
where <B as Block>::Hash: Freeze,

impl<H> Freeze for Mode<H>
where H: Freeze,

impl<H> Freeze for OnlineConfig<H>
where H: Freeze,

impl Freeze for Pays

impl Freeze for Never

impl Freeze for Nothing

impl Freeze for Select

impl Freeze for Fortitude

impl Freeze for Precision

impl Freeze for Instance1

impl Freeze for Identity

impl Freeze for PalletId

impl Freeze for Twox128

impl Freeze for Twox256

impl Freeze for Backing

impl Freeze for Disabled

impl Freeze for Footprint

impl Freeze for NoOpPoll

impl Freeze for NoParams

impl<'a> Freeze for InitializedField<'a>

impl<'a> Freeze for StorageNoopGuard<'a>

impl<'a, T> Freeze for Value<'a, T>
where T: Freeze,

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

impl<A, B, OnDrop, OppositeOnDrop> Freeze for Imbalance<A, B, OnDrop, OppositeOnDrop>
where <B as HasCompact>::Type: Sized, A: Freeze, B: Freeze,

impl<A, F> Freeze for ResolveAssetTo<A, F>

impl<A, F> Freeze for ResolveTo<A, F>

impl<A, F, R, D, Fp> Freeze for FreezeConsideration<A, F, R, D, Fp>
where <F as Inspect<A>>::Balance: Freeze,

impl<A, F, R, D, Fp> Freeze for HoldConsideration<A, F, R, D, Fp>
where <F as Inspect<A>>::Balance: Freeze,

impl<A, Fx, Rx, D, Fp> Freeze for LoneFreezeConsideration<A, Fx, Rx, D, Fp>

impl<A, Fx, Rx, D, Fp> Freeze for LoneHoldConsideration<A, Fx, Rx, D, Fp>

impl<A, T> Freeze for Dust<A, T>
where <T as Inspect<A>>::Balance: Freeze,

impl<A, T> Freeze for Dust<A, T>
where <T as Inspect<A>>::AssetId: Freeze, <T as Inspect<A>>::Balance: Freeze,

impl<AccountId> Freeze for RawOrigin<AccountId>
where AccountId: Freeze,

impl<AccountId> Freeze for Admin<AccountId>

impl<AccountId> Freeze for Owner<AccountId>

impl<AccountId, U> Freeze for DecreaseIssuance<AccountId, U>

impl<AccountId, U> Freeze for IncreaseIssuance<AccountId, U>

impl<AccountId, U> Freeze for DecreaseIssuance<AccountId, U>

impl<AccountId, U> Freeze for IncreaseIssuance<AccountId, U>

impl<AssetId> Freeze for NativeOrWithId<AssetId>
where AssetId: Freeze,

impl<B, OnDrop, OppositeOnDrop> Freeze for Imbalance<B, OnDrop, OppositeOnDrop>
where <B as HasCompact>::Type: Sized, B: Freeze,

impl<B, PositiveImbalance> Freeze for SignedImbalance<B, PositiveImbalance>
where PositiveImbalance: Freeze, <PositiveImbalance as Imbalance<B>>::Opposite: Freeze,

impl<Balance> Freeze for WithdrawConsequence<Balance>
where Balance: Freeze,

impl<Balance, Imbalance, Target1, Target2, const PART1: u32, const PART2: u32> Freeze for SplitTwoWays<Balance, Imbalance, Target1, Target2, PART1, PART2>

impl<Base, Slope, Balance> Freeze for LinearStoragePrice<Base, Slope, Balance>

impl<BlockNumber> Freeze for DispatchTime<BlockNumber>
where BlockNumber: Freeze,

impl<C> Freeze for ConvertRank<C>

impl<C, A> Freeze for ActiveIssuanceOf<C, A>

impl<C, A> Freeze for TotalIssuanceOf<C, A>

impl<C, O> Freeze for UnityOrOuterConversion<C, O>

impl<CA, CB> Freeze for FromContains<CA, CB>

impl<CP> Freeze for FromContainsPair<CP>

impl<Condition> Freeze for CanCreate<Condition>
where Condition: Freeze,

impl<Condition> Freeze for CanDestroy<Condition>
where Condition: Freeze,

impl<ConfigValue, Extra> Freeze for WithConfig<ConfigValue, Extra>
where ConfigValue: Freeze, Extra: Freeze,

impl<E, O> Freeze for EnqueueWithOrigin<E, O>

impl<E, O, N, C> Freeze for TransformOrigin<E, O, N, C>

impl<EO> Freeze for AsEnsureOriginWithArg<EO>

impl<Error> Freeze for ResultQuery<Error>

impl<Exclude> Freeze for EverythingBut<Exclude>

impl<F, A> Freeze for PayAssetFromAccount<F, A>

impl<F, A> Freeze for PayFromAccount<F, A>

impl<F, A, AccountId> Freeze for ItemOf<F, A, AccountId>

impl<F, A, AccountId> Freeze for ItemOf<F, A, AccountId>

impl<F, A, AccountId> Freeze for ItemOf<F, A, AccountId>

impl<F, T> Freeze for ClearFilterGuard<F, T>
where <F as FilterStack<T>>::Stack: Freeze,

impl<F, T> Freeze for FilterStackGuard<F, T>

impl<Flavor> Freeze for CanUpdate<Flavor>
where Flavor: Freeze,

impl<Hasher, KeyType> Freeze for Key<Hasher, KeyType>

impl<Id, Balance> Freeze for IdAmount<Id, Balance>
where Id: Freeze, Balance: Freeze,

impl<Inspect> Freeze for ConfigValue<Inspect>
where <Inspect as InspectStrategy>::Value: Freeze,

impl<Inspect, Inner> Freeze for CheckState<Inspect, Inner>
where <Inspect as InspectStrategy>::Value: Freeze, Inner: Freeze,

impl<K, T, H> Freeze for StorageKeyIterator<K, T, H>

impl<L, R> Freeze for EitherOf<L, R>

impl<L, R> Freeze for EitherOfDiverse<L, R>

impl<Left, Right, Criterion, AssetKind, AccountId> Freeze for UnionOf<Left, Right, Criterion, AssetKind, AccountId>

impl<Left, Right, Criterion, AssetKind, AccountId> Freeze for UnionOf<Left, Right, Criterion, AssetKind, AccountId>

impl<M> Freeze for KeyLenOf<M>

impl<O, A, Morph, Inner, Success> Freeze for TryWithMorphedArg<O, A, Morph, Inner, Success>

impl<OM> Freeze for AsContains<OM>

impl<Orig, Mutator> Freeze for TryMapSuccess<Orig, Mutator>

impl<Origin, PrivilegeCmp> Freeze for EnsureOriginEqualOrHigherPrivilege<Origin, PrivilegeCmp>

impl<Original, Mutator> Freeze for MapSuccess<Original, Mutator>

impl<OverweightAddr> Freeze for NoopServiceQueues<OverweightAddr>

impl<P, DbWeight> Freeze for RemovePallet<P, DbWeight>

impl<P, S, DbWeight> Freeze for RemoveStorage<P, S, DbWeight>

impl<P, T> Freeze for ClassCountOf<P, T>

impl<PS, KV> Freeze for ParameterStoreAdapter<PS, KV>

impl<Params, ReportedId> Freeze for DeriveAndReportId<Params, ReportedId>
where Params: Freeze,

impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> Freeze for CountedStorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>

impl<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues> Freeze for StorageMap<Prefix, Hasher, Key, Value, QueryKind, OnEmpty, MaxValues>

impl<Prefix, Hasher1, Key1, Hasher2, Key2, Value, QueryKind, OnEmpty, MaxValues> Freeze for StorageDoubleMap<Prefix, Hasher1, Key1, Hasher2, Key2, Value, QueryKind, OnEmpty, MaxValues>

impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> Freeze for CountedStorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>

impl<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues> Freeze for StorageNMap<Prefix, Key, Value, QueryKind, OnEmpty, MaxValues>

impl<Prefix, Value, QueryKind, OnEmpty> Freeze for StorageValue<Prefix, Value, QueryKind, OnEmpty>

impl<Price, Balance> Freeze for ConstantStoragePrice<Price, Balance>

impl<Request> Freeze for Bytes<Request>
where Request: Freeze,

impl<RuntimeOrigin, Inner> Freeze for CheckOrigin<RuntimeOrigin, Inner>
where RuntimeOrigin: Freeze, Inner: Freeze,

impl<S, K, T> Freeze for StorageMapShim<S, K, T>

impl<SM, Else> Freeze for EnterSafeModeOnFailedMigration<SM, Else>

impl<Success> Freeze for NeverEnsureOrigin<Success>

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

impl<T> Freeze for StorageIterator<T>

impl<T> Freeze for KeyPrefixIterator<T>

impl<T> Freeze for Equals<T>

impl<T> Freeze for IsInVec<T>

impl<T> Freeze for VariantCountOf<T>

impl<T> Freeze for WrapperKeepOpaque<T>

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

impl<T, H> Freeze for Bounded<T, H>
where <H as Hash>::Output: Freeze,

impl<T, Hash> Freeze for MaybeHashed<T, Hash>
where T: Freeze, Hash: Freeze,

impl<T, OnRemoval> Freeze for PrefixIterator<T, OnRemoval>

impl<Tally, Moment, Class> Freeze for PollStatus<Tally, Moment, Class>
where Tally: Freeze, Class: Freeze, Moment: Freeze,

impl<These, Except> Freeze for TheseExcept<These, Except>

impl<These, Those> Freeze for InsideBoth<These, Those>

impl<WitnessData> Freeze for Witness<WitnessData>

impl<const FROM: u16, const TO: u16, Inner, Pallet, Weight> Freeze for VersionedMigration<FROM, TO, Inner, Pallet, Weight>

impl<const N: usize> Freeze for MigrationId<N>

impl Freeze for Meta

impl Freeze for StopParse

impl Freeze for Trailing

impl<P> Freeze for Braces<P>
where P: Freeze,

impl<P> Freeze for Brackets<P>
where P: Freeze,

impl<P> Freeze for Parens<P>
where P: Freeze,

impl<P, T, V> Freeze for PunctuatedInner<P, T, V>
where V: Freeze,

impl<T> Freeze for Call<T>

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::BlockNumber: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for TestRandomness<T>

impl Freeze for Runtime

impl Freeze for Version

impl Freeze for Value

impl<T> Freeze for Call<T>

impl<T> Freeze for Error<T>

impl<T> Freeze for GenesisConfig<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Call<T>

impl<T> Freeze for GenesisConfig<T>

impl<T> Freeze for Pallet<T>

impl Freeze for Phase

impl Freeze for RefStatus

impl Freeze for ForAll

impl Freeze for ForAny

impl Freeze for Account

impl Freeze for BlockHash

impl Freeze for Digest

impl Freeze for Events

impl Freeze for Number

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

impl<AccountId> Freeze for EnsureNone<AccountId>

impl<AccountId> Freeze for EnsureRoot<AccountId>

impl<AccountId> Freeze for EnsureSigned<AccountId>

impl<AccountId, Success> Freeze for EnsureRootWithSuccess<AccountId, Success>

impl<C> Freeze for TestBlockHashCount<C>

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

impl<Ensure, AccountId, Success> Freeze for EnsureWithSuccess<Ensure, AccountId, Success>

impl<Nonce, AccountData> Freeze for AccountInfo<Nonce, AccountData>
where Nonce: Freeze, AccountData: Freeze,

impl<Success> Freeze for EnsureNever<Success>

impl<T> Freeze for CanSetCodeResult<T>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeTask: Freeze, <T as Config>::Hash: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::AccountId: Freeze, <T as Config>::Hash: Freeze, <T as Config>::RuntimeTask: Freeze,

impl<T> Freeze for Account<T>
where <T as Config>::AccountId: Freeze, <T as SigningTypes>::Public: Freeze,

impl<T> Freeze for GenesisConfig<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for AuthorizeCall<T>

impl<T> Freeze for ChainContext<T>

impl<T> Freeze for CheckGenesis<T>

impl<T> Freeze for CheckMortality<T>

impl<T> Freeze for CheckNonZeroSender<T>

impl<T> Freeze for CheckNonce<T>
where <T as Config>::Nonce: Freeze,

impl<T> Freeze for CheckSpecVersion<T>

impl<T> Freeze for CheckTxVersion<T>

impl<T> Freeze for CheckWeight<T>

impl<T> Freeze for CodeUpgradeAuthorization<T>
where <T as Config>::Hash: Freeze,

impl<T> Freeze for Consumer<T>

impl<T> Freeze for Provider<T>

impl<T> Freeze for SelfSufficient<T>

impl<T> Freeze for SubstrateWeight<T>

impl<T> Freeze for WeightReclaim<T>

impl<T> Freeze for SubstrateWeight<T>

impl<T, C, X> Freeze for Signer<T, C, X>

impl<T, RuntimeCall> Freeze for SubmitTransaction<T, RuntimeCall>

impl<Who, AccountId> Freeze for EnsureSignedBy<Who, AccountId>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl Freeze for Runtime

impl Freeze for Version

impl Freeze for XcmConfig

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl<T> Freeze for WeightInfo<T>

impl<T> Freeze for WeightInfo<T>

impl<T> Freeze for WeightInfo<T>

impl<T> Freeze for WeightInfo<T>

impl Freeze for ProxyType

impl Freeze for Author

impl Freeze for Budget

impl Freeze for Burn

impl Freeze for Features

impl Freeze for MaxAllies

impl Freeze for MaxBids

impl Freeze for MaxCalls

impl Freeze for MaxKeys

impl Freeze for MaxLocks

impl Freeze for MaxTips

impl Freeze for MaxVoters

impl Freeze for MinBid

impl Freeze for Native

impl Freeze for Runtime

impl Freeze for Schedule

impl Freeze for Target

impl Freeze for Version

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl Freeze for MalusCli

impl<Context, Fil> Freeze for InterceptedContext<Context, Fil>
where <Context as SubsystemContext>::Sender: Sized + Freeze, Context: Freeze, Fil: Freeze,

impl<Sender, Fil> Freeze for InterceptedSender<Sender, Fil>
where Sender: Freeze, Fil: Freeze,

impl<Spawner> Freeze for AncestorDisputer<Spawner>
where Spawner: Freeze,

impl<Spawner> Freeze for NoteCandidate<Spawner>
where Spawner: Freeze,

impl<Sub, Interceptor> Freeze for InterceptedSubsystem<Sub, Interceptor>
where Sub: Freeze, Interceptor: Freeze,

impl<LaneId> Freeze for Params<LaneId>
where LaneId: Freeze,

impl<SelfHeaderId, PeerHeaderId> Freeze for ClientState<SelfHeaderId, PeerHeaderId>
where SelfHeaderId: Freeze, PeerHeaderId: Freeze,

impl<SourceChainBalance> Freeze for MessageDetails<SourceChainBalance>
where SourceChainBalance: Freeze,

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

impl<C, P> Freeze for FullDeps<C, P>

impl Freeze for Runtime

impl Freeze for Version

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl<B, BE, C> Freeze for MmrGadget<B, BE, C>

impl<BlockHash> Freeze for LeavesProof<BlockHash>
where BlockHash: Freeze,

impl<Client, Block, S> Freeze for Mmr<Client, Block, S>
where S: Freeze,

impl Freeze for SizeType

impl Freeze for Mode

impl Freeze for Path

impl Freeze for Opt

impl Freeze for SizePool

impl Freeze for Storage

impl<'a> Freeze for SimpleTrie<'a>

impl Freeze for BabeDeps

impl<AuthorityId> Freeze for BeefyDeps<AuthorityId>

impl<B> Freeze for GrandpaDeps<B>

impl<C, P, SC, B, AuthorityId> Freeze for FullDeps<C, P, SC, B, AuthorityId>
where SC: Freeze,

impl Freeze for Opt

impl Freeze for Options

impl Freeze for BlockType

impl Freeze for KeyTypes

impl Freeze for BenchDb

impl<'a> Freeze for BlockContentIterator<'a>

impl Freeze for Version

impl Freeze for DepositOf

impl Freeze for Members

impl Freeze for Rule

impl Freeze for Cid

impl Freeze for Multihash

impl<AccountId, Url> Freeze for UnscrupulousItem<AccountId, Url>
where AccountId: Freeze, Url: Freeze,

impl<T> Freeze for SubstrateWeight<T>

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::Hash: Freeze, <<T as Config>::Lookup as StaticLookup>::Source: Freeze,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T, I> Freeze for Migration<T, I>

impl<T, I> Freeze for GenesisConfig<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for Pallet<T, I>

impl Freeze for Pools

impl<AccountId, AssetKind, AccountIdConverter> Freeze for Ascending<AccountId, AssetKind, AccountIdConverter>

impl<AssetId> Freeze for NativeOrWithIdFactory<AssetId>

impl<First, Second> Freeze for Chain<First, Second>

impl<FirstAsset, AccountId, AssetKind, AccountIdConverter> Freeze for WithFirstAsset<FirstAsset, AccountId, AssetKind, AccountIdConverter>

impl<PoolAssetId> Freeze for PoolInfo<PoolAssetId>
where PoolAssetId: Freeze,

impl<PoolId> Freeze for AccountIdConverterNoSeed<PoolId>

impl<Seed, PoolId> Freeze for AccountIdConverter<Seed, PoolId>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::Balance: Freeze, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <T as Config>::PoolId: Freeze, <T as Config>::PoolAssetId: Freeze, <T as Config>::Balance: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <T as Config>::AssetKind: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl<A, F, S, OU> Freeze for SwapAssetAdapter<A, F, S, OU>

impl<T> Freeze for InitialPayment<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::OnChargeTransaction as OnChargeTransaction<T>>::LiquidityInfo: Freeze, <T as Config>::AssetId: Freeze, <<T as Config>::OnChargeAssetTransaction as OnChargeAssetTransaction<T>>::LiquidityInfo: Freeze,

impl<T> Freeze for Pre<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::OnChargeTransaction as OnChargeTransaction<T>>::Balance: Freeze, <T as Config>::AccountId: Freeze, <<T as Config>::OnChargeTransaction as OnChargeTransaction<T>>::LiquidityInfo: Freeze, <T as Config>::AssetId: Freeze, <<T as Config>::OnChargeAssetTransaction as OnChargeAssetTransaction<T>>::LiquidityInfo: Freeze,

impl<T> Freeze for Val<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::OnChargeTransaction as OnChargeTransaction<T>>::Balance: Freeze, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::OnChargeTransaction as OnChargeTransaction<T>>::Balance: Freeze, <T as Config>::AssetId: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for ChargeAssetTxPayment<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::OnChargeTransaction as OnChargeTransaction<T>>::Balance: Freeze, <T as Config>::AssetId: Freeze,

impl<T> Freeze for SubstrateWeight<T>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AssetKind: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for PoolCost

impl Freeze for Pools

impl<AccountId, AssetId, Balance, BlockNumber> Freeze for PoolInfo<AccountId, AssetId, Balance, BlockNumber>
where AssetId: Freeze, Balance: Freeze, BlockNumber: Freeze, AccountId: Freeze,

impl<Balance> Freeze for PoolStakerInfo<Balance>
where Balance: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::Balance: Freeze, <T as Config>::AccountId: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <T as Config>::Balance: Freeze, <T as Config>::AssetId: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Pallet<T>

impl<CON, HC> Freeze for FungiblesAdapter<CON, HC>

impl<T> Freeze for InitialPayment<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::OnChargeTransaction as OnChargeTransaction<T>>::LiquidityInfo: Freeze, <<T as Config>::Fungibles as Inspect<<T as Config>::AccountId>>::AssetId: Freeze, <<T as Config>::Fungibles as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for Pre<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::OnChargeTransaction as OnChargeTransaction<T>>::Balance: Freeze, <T as Config>::AccountId: Freeze, <<T as Config>::OnChargeTransaction as OnChargeTransaction<T>>::LiquidityInfo: Freeze, <<T as Config>::OnChargeAssetTransaction as OnChargeAssetTransaction<T>>::AssetId: Freeze, <<T as Config>::Fungibles as Inspect<<T as Config>::AccountId>>::AssetId: Freeze, <<T as Config>::Fungibles as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for Val<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::OnChargeTransaction as OnChargeTransaction<T>>::Balance: Freeze, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Fungibles as Inspect<<T as Config>::AccountId>>::Balance: Freeze, <<T as Config>::OnChargeAssetTransaction as OnChargeAssetTransaction<T>>::AssetId: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for ChargeAssetTxPayment<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::OnChargeTransaction as OnChargeTransaction<T>>::Balance: Freeze, <<T as Config>::OnChargeAssetTransaction as OnChargeAssetTransaction<T>>::AssetId: Freeze,

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for Account

impl Freeze for Approvals

impl Freeze for Asset

impl Freeze for Metadata

impl<Balance, AccountId> Freeze for ExistenceReason<Balance, AccountId>
where Balance: Freeze, AccountId: Freeze,

impl<Balance, AccountId, DepositBalance> Freeze for OldAssetDetails<Balance, AccountId, DepositBalance>
where AccountId: Freeze, Balance: Freeze, DepositBalance: Freeze,

impl<Balance, AccountId, DepositBalance> Freeze for AssetDetails<Balance, AccountId, DepositBalance>
where AccountId: Freeze, Balance: Freeze, DepositBalance: Freeze,

impl<Balance, DepositBalance> Freeze for Approval<Balance, DepositBalance>
where Balance: Freeze, DepositBalance: Freeze,

impl<Balance, DepositBalance, Extra, AccountId> Freeze for AssetAccount<Balance, DepositBalance, Extra, AccountId>
where Balance: Freeze, Extra: Freeze, DepositBalance: Freeze, AccountId: Freeze,

impl<DepositBalance, BoundedString> Freeze for AssetMetadata<DepositBalance, BoundedString>
where DepositBalance: Freeze, BoundedString: Freeze,

impl<F, T, CON, I> Freeze for BalanceToAssetBalance<F, T, CON, I>

impl<ID, T, I> Freeze for SetNextAssetId<ID, T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for MigrateToV1<T>

impl<T> Freeze for SubstrateWeight<T>

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config<I>>::AssetIdParameter: Freeze, <<T as Config>::Lookup as StaticLookup>::Source: Freeze, <T as Config<I>>::Balance: Freeze,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config<I>>::AssetId: Freeze, <T as Config>::AccountId: Freeze, <T as Config<I>>::Balance: Freeze,

impl<T, I> Freeze for GenesisConfig<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config<I>>::AssetId: Freeze,

impl<T, I> Freeze for Pallet<T, I>

impl<T, I> Freeze for AutoIncAssetId<T, I>

impl<T, I> Freeze for ExtraMutator<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config<I>>::AssetId: Freeze, <T as Config>::AccountId: Freeze, <T as Config<I>>::Extra: Freeze,

impl Freeze for Freezes

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <T as Config<I>>::AssetId: Freeze, <T as Config<I>>::Balance: Freeze,

impl<T, I> Freeze for Pallet<T, I>

impl Freeze for Holds

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <T as Config<I>>::AssetId: Freeze, <T as Config<I>>::RuntimeHoldReason: Freeze, <T as Config<I>>::Balance: Freeze,

impl<T, I> Freeze for Pallet<T, I>

impl<AccountId, C> Freeze for BalanceSwapAction<AccountId, C>
where <C as Currency<AccountId>>::Balance: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <T as Config>::SwapAction: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <T as Config>::SwapAction: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for PendingSwap<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <T as Config>::SwapAction: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Call<T>

impl<T> Freeze for GenesisConfig<T>

impl<T> Freeze for Pallet<T>

impl Freeze for Keys

impl Freeze for NextKeys

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl Freeze for Author

impl<T> Freeze for Call<T>

impl<T> Freeze for Pallet<T>

impl Freeze for Lateness

impl<Offender> Freeze for EquivocationOffence<Offender>
where Offender: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::KeyOwnerProof: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for GenesisConfig<T>

impl<T> Freeze for Pallet<T>

impl<T, R, P, L> Freeze for EquivocationReportSystem<T, R, P, L>

impl Freeze for ListError

impl Freeze for Runtime

impl Freeze for ListBags

impl Freeze for ListNodes

impl Freeze for Lock

impl<T> Freeze for SubstrateWeight<T>

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Lookup as StaticLookup>::Source: Freeze,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <T as Config<I>>::Score: Freeze,

impl<T, I> Freeze for AddScore<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for CheckCounterPrefix<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for Pallet<T, I>

impl<T, I> Freeze for ScoresViewFunction<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T, I> Freeze for Bag<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config<I>>::Score: Freeze, <T as Config>::AccountId: Freeze,

impl<T, I> Freeze for List<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for Node<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <T as Config<I>>::Score: Freeze,

impl Freeze for Reasons

impl Freeze for Account

impl Freeze for Freezes

impl Freeze for Holds

impl Freeze for Locks

impl Freeze for Reserves

impl<Balance> Freeze for AccountData<Balance>
where Balance: Freeze,

impl<Balance> Freeze for BalanceLock<Balance>
where Balance: Freeze,

impl<ReserveIdentifier, Balance> Freeze for ReserveData<ReserveIdentifier, Balance>
where ReserveIdentifier: Freeze, Balance: Freeze,

impl<T> Freeze for SubstrateWeight<T>

impl<T, A, I> Freeze for MigrateManyToTrackInactive<T, A, I>

impl<T, A, I> Freeze for MigrateToTrackInactive<T, A, I>

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Lookup as StaticLookup>::Source: Freeze, <T as Config<I>>::Balance: Freeze,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <T as Config<I>>::Balance: Freeze,

impl<T, I> Freeze for ResetInactive<T, I>

impl<T, I> Freeze for GenesisConfig<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config<I>>::Balance: Freeze,

impl<T, I> Freeze for Pallet<T, I>

impl<T, I> Freeze for DustCleaner<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <T as Config<I>>::Balance: Freeze,

impl<T, I> Freeze for NegativeImbalance<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config<I>>::Balance: Freeze,

impl<T, I> Freeze for PositiveImbalance<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config<I>>::Balance: Freeze,

impl<N> Freeze for TimeSlot<N>
where N: Freeze,

impl<Offender, N> Freeze for EquivocationOffence<Offender, N>
where Offender: Freeze, N: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::KeyOwnerProof: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for GenesisConfig<T>
where <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Pallet<T>

impl<T, R, P, L> Freeze for EquivocationReportSystem<T, R, P, L>

impl<T> Freeze for Call<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for DepositBeefyDigest<T>

impl Freeze for Bounties

impl<AccountId, Balance, BlockNumber> Freeze for Bounty<AccountId, Balance, BlockNumber>
where AccountId: Freeze, Balance: Freeze, BlockNumber: Freeze,

impl<AccountId, BlockNumber> Freeze for BountyStatus<AccountId, BlockNumber>
where AccountId: Freeze, BlockNumber: Freeze,

impl<T> Freeze for SubstrateWeight<T>

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized, <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <<T as Config>::Lookup as StaticLookup>::Source: Freeze,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized, <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <T as Config>::AccountId: Freeze,

impl<T, I> Freeze for Pallet<T, I>

impl<BlockNumber> Freeze for ImportedCommitmentsInfoData<BlockNumber>
where BlockNumber: Freeze,

impl<T, I> Freeze for Call<T, I>
where <<T as Config<I>>::BridgedChain as Chain>::BlockNumber: Freeze, <T as Config>::AccountId: Freeze, <<T as Config<I>>::BridgedChain as ChainWithBeefy>::MmrHash: Freeze,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for GenesisConfig<T, I>
where <T as Config>::AccountId: Freeze, <<T as Config<I>>::BridgedChain as Chain>::BlockNumber: Freeze, <<T as Config<I>>::BridgedChain as ChainWithBeefy>::MmrHash: Freeze,

impl<T, I> Freeze for Pallet<T, I>

impl<T> Freeze for BridgeWeight<T>

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config<I>>::BridgedChain as Chain>::Hash: Freeze, <<T as Config<I>>::BridgedChain as Chain>::BlockNumber: Freeze,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized, <<T as Config<I>>::BridgedChain as Chain>::BlockNumber: Freeze, <<T as Config<I>>::BridgedChain as Chain>::Hash: Freeze,

impl<T, I> Freeze for GenesisConfig<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T, I> Freeze for MaybeHeadersToKeep<T, I>

impl<T, I> Freeze for Pallet<T, I>

impl<T, I> Freeze for StoredAuthoritySet<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for SubmitFinalityProofHelper<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<LaneId> Freeze for MessageProofParams<LaneId>
where LaneId: Freeze,

impl<S> Freeze for InboundLane<S>
where S: Freeze,

impl<S> Freeze for OutboundLane<S>
where S: Freeze,

impl<T> Freeze for BridgeWeight<T>

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized, <<T as Config<I>>::BridgedChain as Chain>::AccountId: Freeze, <T as Config>::AccountId: Freeze, <<T as Config<I>>::BridgedChain as Chain>::Hash: Freeze, <T as Config<I>>::LaneId: Freeze,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config<I>>::LaneId: Freeze,

impl<T, I> Freeze for Pallet<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for UncheckedMigrationV0ToV1<T, I>

impl<T, I> Freeze for GenesisConfig<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T, I> Freeze for Pallet<T, I>

impl<T, I> Freeze for CallHelper<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for LanesManager<T, I>

impl<T, I> Freeze for RuntimeInboundLaneStorage<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config<I>>::LaneId: Freeze,

impl<T, I> Freeze for RuntimeOutboundLaneStorage<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config<I>>::LaneId: Freeze,

impl<T, I> Freeze for SendMessageArgs<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config<I>>::LaneId: Freeze,

impl<T, I> Freeze for StoredInboundLaneData<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<ThisChainAccountId, LaneId> Freeze for MessageDeliveryProofParams<ThisChainAccountId, LaneId>
where LaneId: Freeze,

impl Freeze for ParasInfo

impl<T> Freeze for BridgeWeight<T>

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for Pallet<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for GenesisConfig<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T, I> Freeze for MaybeMaxParachains<T, I>

impl<T, I> Freeze for Pallet<T, I>

impl<T, I> Freeze for SubmitParachainHeadsHelper<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I, C> Freeze for ParachainHeaders<T, I, C>

impl<Account, LaneId> Freeze for PayRewardFromAccount<Account, LaneId>

impl<AccountId, BlockNumber, Currency, ReserveId, Stake, Lease> Freeze for StakeAndSlashNamed<AccountId, BlockNumber, Currency, ReserveId, Stake, Lease>

impl<AccountId, RemoteGrandpaChainBlockNumber, LaneId> Freeze for PreDispatchData<AccountId, RemoteGrandpaChainBlockNumber, LaneId>
where AccountId: Freeze, RemoteGrandpaChainBlockNumber: Freeze, LaneId: Freeze,

impl<AccountId, RewardBalance, LaneId> Freeze for RelayerAccountAction<AccountId, RewardBalance, LaneId>
where AccountId: Freeze, RewardBalance: Freeze, LaneId: Freeze,

impl<IdProvider, Runtime, BatchCallUnpacker, BridgeGrandpaPalletInstance, BridgeMessagesPalletInstance, BridgeRelayersPalletInstance, PriorityBoostPerMessage> Freeze for WithGrandpaChainExtensionConfig<IdProvider, Runtime, BatchCallUnpacker, BridgeGrandpaPalletInstance, BridgeMessagesPalletInstance, BridgeRelayersPalletInstance, PriorityBoostPerMessage>

impl<IdProvider, Runtime, BatchCallUnpacker, BridgeParachainsPalletInstance, BridgeMessagesPalletInstance, BridgeRelayersPalletInstance, PriorityBoostPerMessage> Freeze for WithParachainExtensionConfig<IdProvider, Runtime, BatchCallUnpacker, BridgeParachainsPalletInstance, BridgeMessagesPalletInstance, BridgeRelayersPalletInstance, PriorityBoostPerMessage>

impl<IdProvider, Runtime, BridgeMessagesPalletInstance, BridgeRelayersPalletInstance, PriorityBoostPerMessage> Freeze for WithMessagesExtensionConfig<IdProvider, Runtime, BridgeMessagesPalletInstance, BridgeRelayersPalletInstance, PriorityBoostPerMessage>

impl<LaneId> Freeze for RewardsAccountParams<LaneId>
where LaneId: Freeze,

impl<Runtime, Config> Freeze for BridgeRelayersTransactionExtension<Runtime, Config>

impl<T> Freeze for BridgeWeight<T>

impl<T, I> Freeze for Call<T, I>
where <<T as Config<I>>::PaymentProcedure as PaymentProcedure<<T as Config>::AccountId, <T as Config<I>>::Reward, <T as Config<I>>::RewardBalance>>::Beneficiary: Sized + Freeze, <T as Config>::RuntimeEvent: Sized, <T as Config<I>>::Reward: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <T as Config<I>>::Reward: Freeze, <T as Config<I>>::RewardBalance: Freeze, <<T as Config<I>>::PaymentProcedure as PaymentProcedure<<T as Config>::AccountId, <T as Config<I>>::Reward, <T as Config<I>>::RewardBalance>>::Beneficiary: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze, <T as Config<I>>::Balance: Freeze,

impl<T, I> Freeze for Pallet<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for Pallet<T, I>

impl<T, I, LaneId> Freeze for UncheckedMigrationV0ToV1<T, I, LaneId>

impl<T, I, LaneId> Freeze for UncheckedMigrationV1ToV2<T, I, LaneId>

impl<T, MI, RI, DeliveryReward> Freeze for DeliveryConfirmationPaymentsAdapter<T, MI, RI, DeliveryReward>

impl Freeze for Finality

impl Freeze for Leases

impl Freeze for Regions

impl Freeze for SaleInfo

impl Freeze for Status

impl Freeze for Workload

impl Freeze for Workplan

impl Freeze for CoreMask

impl Freeze for RegionId

impl<AccountId> Freeze for ContributionRecord<AccountId>
where AccountId: Freeze,

impl<AccountId, Balance> Freeze for RegionRecord<AccountId, Balance>
where AccountId: Freeze, Balance: Freeze,

impl<Balance> Freeze for AdaptedPrices<Balance>
where Balance: Freeze,

impl<Balance> Freeze for CenterTargetPrice<Balance>

impl<Balance> Freeze for InstaPoolHistoryRecord<Balance>
where Balance: Freeze,

impl<Balance> Freeze for PotentialRenewalRecord<Balance>
where Balance: Freeze,

impl<Balance> Freeze for SalePerformance<Balance>
where Balance: Freeze,

impl<Balance, RelayBlockNumber> Freeze for SaleInfoRecord<Balance, RelayBlockNumber>
where RelayBlockNumber: Freeze, Balance: Freeze,

impl<RelayBlockNumber> Freeze for ConfigRecord<RelayBlockNumber>
where RelayBlockNumber: Freeze,

impl<RelayBlockNumber, RelayBalance> Freeze for OnDemandRevenueRecord<RelayBlockNumber, RelayBalance>
where RelayBlockNumber: Freeze, RelayBalance: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze, <T as Config>::AccountId: Freeze, <<T as Config>::Coretime as CoretimeInterface>::AccountId: Freeze, <<<T as Config>::Coretime as CoretimeInterface>::RelayChainBlockNumberProvider as BlockNumberProvider>::BlockNumber: Freeze, <<T as Config>::Coretime as CoretimeInterface>::Balance: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze, <<<T as Config>::Coretime as CoretimeInterface>::RelayChainBlockNumberProvider as BlockNumberProvider>::BlockNumber: Freeze, <<T as Config>::Coretime as CoretimeInterface>::AccountId: Freeze,

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl<T, BlockConversion> Freeze for MigrateToV4Impl<T, BlockConversion>

impl<AccountId, Balance, BlockNumber> Freeze for ChildBounty<AccountId, Balance, BlockNumber>
where Balance: Freeze, AccountId: Freeze, BlockNumber: Freeze,

impl<AccountId, BlockNumber> Freeze for ChildBountyStatus<AccountId, BlockNumber>
where AccountId: Freeze, BlockNumber: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <<T as Config>::Lookup as StaticLookup>::Source: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl<T, TransferWeight> Freeze for MigrateToV1Impl<T, TransferWeight>

impl<AccountId, Balance> Freeze for CandidateInfo<AccountId, Balance>
where AccountId: Freeze, Balance: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for MigrateToV1<T>

impl<T> Freeze for Candidates_Storage_Instance<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for CostOf

impl Freeze for Members

impl Freeze for Prime

impl Freeze for Proposals

impl Freeze for Voting

impl<AccountId, BlockNumber> Freeze for Votes<AccountId, BlockNumber>
where BlockNumber: Freeze,

impl<AccountId, I> Freeze for RawOrigin<AccountId, I>
where AccountId: Freeze,

impl<AccountId, I> Freeze for EnsureMember<AccountId, I>

impl<AccountId, I, const N: u32> Freeze for EnsureMembers<AccountId, I, N>

impl<AccountId, I, const N: u32, const D: u32> Freeze for EnsureProportionAtLeast<AccountId, I, N, D>

impl<AccountId, I, const N: u32, const D: u32> Freeze for EnsureProportionMoreThan<AccountId, I, N, D>

impl<Ceil, Deposit> Freeze for WithCeil<Ceil, Deposit>

impl<Delay, Deposit> Freeze for Delayed<Delay, Deposit>

impl<Deposit> Freeze for Constant<Deposit>

impl<I> Freeze for HoldReason<I>

impl<Period, Step> Freeze for Stepped<Period, Step>

impl<Precision, Deposit> Freeze for Round<Precision, Deposit>

impl<Ratio, Base> Freeze for Geometric<Ratio, Base>

impl<Slope, Offset> Freeze for Linear<Slope, Offset>

impl<T> Freeze for SubstrateWeight<T>

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::Hash: Freeze, <T as Config>::AccountId: Freeze,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <T as Config>::Hash: Freeze,

impl<T, I> Freeze for GenesisConfig<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for Pallet<T, I>

impl Freeze for Charter

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T, I> Freeze for Pallet<T, I>

impl Freeze for InitState

impl Freeze for RetVal

impl Freeze for DebugInfo

impl Freeze for Diff

impl Freeze for Nonce

impl Freeze for Limits

impl<'a, 'b, E, S> Freeze for Environment<'a, 'b, E, S>

impl<AccountId> Freeze for InstantiateReturnValue<AccountId>
where AccountId: Freeze,

impl<Balance> Freeze for StorageDeposit<Balance>
where Balance: Freeze,

impl<CodeHash, Balance> Freeze for CodeUploadReturnValue<CodeHash, Balance>
where CodeHash: Freeze, Balance: Freeze,

impl<Hash> Freeze for Code<Hash>
where Hash: Freeze,

impl<R, Balance, EventRecord> Freeze for ContractResult<R, Balance, EventRecord>
where R: Freeze, Balance: Freeze,

impl<T> Freeze for Origin<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Call<T>
where <<<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance as HasCompact>::Type: Sized + Freeze, <T as Config>::RuntimeEvent: Sized, <<T as Config>::Lookup as StaticLookup>::Source: Freeze, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze, <T as Config>::Hash: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <T as Config>::Hash: Freeze, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for Migration<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::Hash: Freeze,

impl<T> Freeze for DepositAccount<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for DeletionQueueManager<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Migration<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for ContractInfo<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <T as Config>::Hash: Freeze, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for Migration<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Migration<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for ContractInfo<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::Hash: Freeze, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for Migration<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Environment<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for EnvironmentType<T>

impl<T> Freeze for Frame<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze, <T as Config>::Hash: Freeze,

impl<T> Freeze for InstructionWeights<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Schedule<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for BareCallBuilder<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for BareInstantiateBuilder<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze, <T as Config>::Hash: Freeze,

impl<T> Freeze for CallBuilder<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::RuntimeOrigin: Freeze, <<T as Config>::Lookup as StaticLookup>::Source: Freeze, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze, <<<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance as HasCompact>::Type: Freeze,

impl<T> Freeze for InstantiateBuilder<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::RuntimeOrigin: Freeze, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze, <T as Config>::Hash: Freeze, <<<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance as HasCompact>::Type: Freeze,

impl<T> Freeze for InstantiateWithCodeBuilder<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::RuntimeOrigin: Freeze, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze, <<<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance as HasCompact>::Type: Freeze,

impl<T> Freeze for SubstrateWeight<T>

impl<T, OldCurrency> Freeze for ContractInfo<T, OldCurrency>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::Hash: Freeze, <OldCurrency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <T as Config>::AccountId: Freeze,

impl<T, OldCurrency> Freeze for Migration<T, OldCurrency>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T, OldCurrency> Freeze for CodeInfo<T, OldCurrency>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <OldCurrency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T, OldCurrency> Freeze for Migration<T, OldCurrency>
where <OldCurrency as Currency<<T as Config>::AccountId>>::Balance: Sized, <T as Config>::RuntimeEvent: Sized, <T as Config>::Hash: Freeze,

impl<T, OldCurrency> Freeze for Migration<T, OldCurrency>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::Hash: Freeze,

impl<T, const TEST_ALL_STEPS: bool> Freeze for Migration<T, TEST_ALL_STEPS>
where <T as Config>::RuntimeEvent: Sized,

impl Freeze for MaxLocks

impl Freeze for Runtime

impl Freeze for XcmConfig

impl Freeze for MaxLocks

impl Freeze for Runtime

impl Freeze for XcmConfig

impl Freeze for MockNet

impl Freeze for ParaA

impl Freeze for Relay

impl<Location, AssetId> Freeze for FromLocationToAsset<Location, AssetId>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::Hash: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for TrustedLockerCase<T>

impl<T> Freeze for ParachainXcmRouter<T>

impl Freeze for CallFlags

impl Freeze for Status

impl Freeze for VotingFor

impl Freeze for Vote

impl<Balance> Freeze for AccountVote<Balance>
where Balance: Freeze,

impl<Balance> Freeze for Delegations<Balance>
where Balance: Freeze,

impl<Balance, AccountId, BlockNumber> Freeze for Delegating<Balance, AccountId, BlockNumber>
where Balance: Freeze, AccountId: Freeze, BlockNumber: Freeze,

impl<Balance, AccountId, BlockNumber, PollIndex, MaxVotes> Freeze for Voting<Balance, AccountId, BlockNumber, PollIndex, MaxVotes>
where Balance: Freeze, AccountId: Freeze, BlockNumber: Freeze,

impl<Balance, BlockNumber, PollIndex, MaxVotes> Freeze for Casting<Balance, BlockNumber, PollIndex, MaxVotes>
where Balance: Freeze, BlockNumber: Freeze,

impl<T> Freeze for SubstrateWeight<T>

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized, <<T as Config<I>>::Polls as Polling<Tally<<<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance, <T as Config<I>>::MaxTurnout>>>::Index: Freeze, <<T as Config<I>>::Polls as Polling<Tally<<<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance, <T as Config<I>>::MaxTurnout>>>::Class: Freeze, <<T as Config>::Lookup as StaticLookup>::Source: Freeze, <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config<I>>::Polls as Polling<Tally<<<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance, <T as Config<I>>::MaxTurnout>>>::Class: Freeze, <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T, I> Freeze for Pallet<T, I>

impl<Votes, Total> Freeze for Tally<Votes, Total>
where Votes: Freeze,

impl Freeze for Wish

impl Freeze for Member

impl Freeze for Params

impl<Balance, BlockNumber, Ranks> Freeze for ParamsType<Balance, BlockNumber, Ranks>
where BlockNumber: Freeze,

impl<BlockNumber> Freeze for MemberStatus<BlockNumber>
where BlockNumber: Freeze,

impl<Inner> Freeze for ConvertU16ToU32<Inner>

impl<T> Freeze for SubstrateWeight<T>

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T, I> Freeze for MigrateToV1<T, I>

impl<T, I> Freeze for Pallet<T, I>

impl<T, I, const MIN_RANK: u16> Freeze for EnsureInducted<T, I, MIN_RANK>

impl Freeze for Runtime

impl Freeze for SomeCall

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl Freeze for Agents

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for Pallet<T>

impl<T, MaxAgents> Freeze for ProxyDelegatorMigration<T, MaxAgents>

impl Freeze for Blacklist

impl Freeze for DepositOf

impl Freeze for VotingOf

impl Freeze for Vote

impl<Balance> Freeze for AccountVote<Balance>
where Balance: Freeze,

impl<Balance> Freeze for Delegations<Balance>
where Balance: Freeze,

impl<Balance> Freeze for Tally<Balance>
where Balance: Freeze,

impl<Balance, AccountId, BlockNumber, MaxVotes> Freeze for Voting<Balance, AccountId, BlockNumber, MaxVotes>
where Balance: Freeze, AccountId: Freeze, BlockNumber: Freeze,

impl<BlockNumber, Proposal, Balance> Freeze for ReferendumInfo<BlockNumber, Proposal, Balance>
where BlockNumber: Freeze, Proposal: Freeze, Balance: Freeze,

impl<BlockNumber, Proposal, Balance> Freeze for ReferendumStatus<BlockNumber, Proposal, Balance>
where BlockNumber: Freeze, Proposal: Freeze, Balance: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <T as Config>::Hash: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze, <<T as Config>::Lookup as StaticLookup>::Source: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <T as Config>::AccountId: Freeze, <T as Config>::Hash: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Migration<T>

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for Bar

impl Freeze for Dummy

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <T as Config>::Balance: Freeze,

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <T as Config>::Balance: Freeze,

impl<T> Freeze for Pallet<T>

impl Freeze for Status

impl Freeze for Round

impl<T> Freeze for AdminOperation<T>
where <T as Config>::RuntimeEvent: Sized, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for ElectionError<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Fallback as ElectionProvider>::Error: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for Phase<T>
where <T as Config>::RuntimeEvent: Sized, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for MinerError<T>
where <<T as MinerConfig>::Solver as NposSolver>::Error: Freeze,

impl<T> Freeze for OffchainMinerError<T>
where <T as Config>::RuntimeEvent: Sized, <<<T as Config>::MinerConfig as MinerConfig>::Solver as NposSolver>::Error: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Event<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for DepositForViewFunction<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubmissionMetadata<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for CleanRound<T>

impl<T> Freeze for Continue<T>

impl<T> Freeze for GetDone<T>

impl<T> Freeze for GetSigned<T>

impl<T> Freeze for PagedRawSolution<T>

impl<T> Freeze for BaseMiner<T>

impl<T> Freeze for MineInput<T>

impl<T> Freeze for OffchainWorkerMiner<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for QueuedSolution<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for SubstrateWeight<T>

impl<T> Freeze for SubstrateWeight<T>

impl<T> Freeze for SubstrateWeight<T>

impl<T> Freeze for SubstrateWeight<T>

impl<T, Queued, NotQueued> Freeze for IfSolutionQueuedElse<T, Queued, NotQueued>

impl Freeze for Round

impl Freeze for Snapshot

impl<AccountId, Balance, Solution> Freeze for SignedSubmission<AccountId, Balance, Solution>
where AccountId: Freeze, Balance: Freeze, Solution: Freeze,

impl<AccountId, DataProvider> Freeze for RoundSnapshot<AccountId, DataProvider>

impl<AccountId, MaxWinners, MaxBackersPerWinner> Freeze for ReadySolution<AccountId, MaxWinners, MaxBackersPerWinner>

impl<Balance, Fixed, Inc> Freeze for GeometricDepositBase<Balance, Fixed, Inc>

impl<Bn> Freeze for Phase<Bn>
where Bn: Freeze,

impl<S> Freeze for RawSolution<S>
where S: Freeze,

impl<T> Freeze for ElectionError<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Fallback as ElectionProvider>::Error: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for InsertResult<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <<T as Config>::MinerConfig as MinerConfig>::Solution: Freeze,

impl<T> Freeze for MigrateToV1<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SignedSubmissions<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for SnapshotWrapper<T>

impl<T> Freeze for Miner<T>

impl<T> Freeze for SubstrateWeight<T>

impl<T> Freeze for Pallet<T>

impl Freeze for Members

impl Freeze for RunnersUp

impl Freeze for Voting

impl<AccountId, Balance> Freeze for SeatHolder<AccountId, Balance>
where AccountId: Freeze, Balance: Freeze,

impl<AccountId, Balance> Freeze for Voter<AccountId, Balance>
where Balance: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <<T as Config>::Lookup as StaticLookup>::Source: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl<AccountId> Freeze for Owner<AccountId>
where AccountId: Freeze,

impl<Signer, Signature> Freeze for AuthCredentials<Signer, Signature>
where Signer: Freeze, Signature: Freeze,

impl<T> Freeze for Call<T>

impl<T> Freeze for Error<T>

impl<T> Freeze for Call<T>

impl<T> Freeze for Origin<T>
where <T as Config>::AccountId: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T, Signer, Signature> Freeze for AuthorizeCoownership<T, Signer, Signature>
where Signer: Freeze, Signature: Freeze,

impl Freeze for Bar

impl Freeze for Dummy

impl Freeze for Foo

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::Balance: Freeze,

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::Balance: Freeze, <T as Config>::AccountId: Freeze,

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::Balance: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for WatchDummy<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for Value

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl Freeze for Bar

impl Freeze for Foo

impl Freeze for Quux

impl Freeze for Qux

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for MyMap

impl<T> Freeze for Call<T>

impl<T> Freeze for SubstrateWeight<T>

impl<T> Freeze for Pallet<T>

impl<T, W> Freeze for LazyMigrationV1<T, W>

impl Freeze for Pair

impl Freeze for Public

impl Freeze for Signature

impl Freeze for Prices

impl<Public, BlockNumber> Freeze for PricePayload<Public, BlockNumber>
where BlockNumber: Freeze, Public: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze, <T as SigningTypes>::Signature: Freeze, <T as SigningTypes>::Public: Freeze,

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Pallet<T>

impl Freeze for Value

impl<T> Freeze for Call<T>

impl<T> Freeze for InnerMigrateV0ToV1<T>

impl<T> Freeze for Pallet<T>

impl Freeze for Something

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for Numbers

impl Freeze for Total

impl<T> Freeze for Call<T>

impl<T> Freeze for Error<T>

impl<T> Freeze for Task<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for SomeMap

impl Freeze for SomeValue

impl Freeze for SomeMap

impl Freeze for SomeValue

impl Freeze for SomeType1

impl<T> Freeze for Call<T>

impl<T> Freeze for Error<T>

impl<T> Freeze for GetValueViewFunction<T>
where <T as Config>::AccountId: Sized,

impl<T> Freeze for GetValueWithArgViewFunction<T>
where <T as Config>::AccountId: Sized,

impl<T> Freeze for Pallet<T>

impl<T, I> Freeze for Call<T, I>

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for GetValueViewFunction<T, I>
where <T as Config>::AccountId: Sized,

impl<T, I> Freeze for GetValueWithArgViewFunction<T, I>
where <T as Config>::AccountId: Sized,

impl<T, I> Freeze for Pallet<T, I>

impl Freeze for Head

impl Freeze for Queue

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for MigrateToV1<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for MaxChecking<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for UnstakeRequest<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for Event

impl Freeze for Compute

impl Freeze for Length

impl Freeze for Storage

impl Freeze for TrashData

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for Event

impl Freeze for Stalled

impl Freeze for State

impl Freeze for TimeSlot

impl<N> Freeze for StoredState<N>
where N: Freeze,

impl<N, Limit> Freeze for StoredPendingChange<N, Limit>
where N: Freeze,

impl<Offender> Freeze for EquivocationOffence<Offender>
where Offender: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::KeyOwnerProof: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for DefaultForState<T>

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T, R, P, L> Freeze for EquivocationReportSystem<T, R, P, L>

impl Freeze for Data

impl Freeze for SubsOf

impl Freeze for SuperOf

impl<A, U, S> Freeze for MigrationState<A, U, S>
where A: Freeze, U: Freeze, S: Freeze,

impl<Balance> Freeze for Judgement<Balance>
where Balance: Freeze,

impl<Balance, AccountId, IdField> Freeze for RegistrarInfo<Balance, AccountId, IdField>
where AccountId: Freeze, Balance: Freeze, IdField: Freeze,

impl<Balance, MaxJudgements, IdentityInfo> Freeze for Registration<Balance, MaxJudgements, IdentityInfo>
where Balance: Freeze, IdentityInfo: Freeze,

impl<FieldLimit> Freeze for IdentityInfo<FieldLimit>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Lookup as StaticLookup>::Source: Freeze, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <<T as Config>::IdentityInformation as IdentityInformationProvider>::FieldsIdentifier: Freeze, <T as Config>::Hash: Freeze, <T as Config>::OffchainSignature: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for LazyMigrationV1ToV2<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl<T, const KL: u64> Freeze for VersionUncheckedMigrateV0ToV1<T, KL>

impl Freeze for Keys

impl<BlockNumber> Freeze for Heartbeat<BlockNumber>
where BlockNumber: Freeze,

impl<Offender> Freeze for UnresponsivenessOffence<Offender>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::AuthorityId as RuntimeAppPublic>::Signature: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AuthorityId: Freeze,

impl<T> Freeze for Migration<T>

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for Accounts

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountIndex: Freeze, <<T as Config>::Lookup as StaticLookup>::Source: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <T as Config>::AccountIndex: Freeze, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl<T> Freeze for Call<T>

impl<T> Freeze for Pallet<T>

impl Freeze for Lottery

impl Freeze for Tickets

impl<BlockNumber, Balance> Freeze for LotteryConfig<BlockNumber, Balance>
where Balance: Freeze, BlockNumber: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for Members

impl Freeze for Prime

impl<T> Freeze for SubstrateWeight<T>

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Lookup as StaticLookup>::Source: Freeze,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for GenesisConfig<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for Pallet<T, I>

impl Freeze for Pages

impl<MessageOrigin> Freeze for BookState<MessageOrigin>
where MessageOrigin: Freeze,

impl<MessageOrigin> Freeze for Neighbours<MessageOrigin>
where MessageOrigin: Freeze,

impl<Origin, Size, HeapSize> Freeze for MaxMessageLen<Origin, Size, HeapSize>

impl<Origin, const REQUIRED_WEIGHT: u64> Freeze for NoopMessageProcessor<Origin, REQUIRED_WEIGHT>

impl<Size> Freeze for ItemHeader<Size>
where Size: Freeze,

impl<Size, HeapSize> Freeze for Page<Size, HeapSize>
where Size: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::MessageProcessor as ProcessMessage>::Origin: Freeze, <T as Config>::Size: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::MessageProcessor as ProcessMessage>::Origin: Freeze, <T as Config>::Size: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for MaxEncodedLenOf<T>

impl<T> Freeze for SubstrateWeight<T>

impl<T, O> Freeze for IntoU32<T, O>

impl<Call, Extension> Freeze for MetaTx<Call, Extension>
where Call: Freeze, Extension: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::RuntimeOrigin: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::RuntimeOrigin: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for MetaTxMarker<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for Cursor

impl Freeze for Historic

impl<Cursor, BlockNumber> Freeze for MigrationCursor<Cursor, BlockNumber>
where BlockNumber: Freeze, Cursor: Freeze,

impl<Cursor, BlockNumber> Freeze for ActiveCursor<Cursor, BlockNumber>
where BlockNumber: Freeze, Cursor: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl<T, P> Freeze for ResetPallet<T, P>

impl Freeze for Value

impl<T> Freeze for Call<T>

impl<T> Freeze for Pallet<T>

impl Freeze for Mixnodes

impl<BlockNumber, BoundedMixnode> Freeze for Registration<BlockNumber, BoundedMixnode>
where BlockNumber: Freeze, BoundedMixnode: Freeze,

impl<ExternalAddresses> Freeze for BoundedMixnode<ExternalAddresses>
where ExternalAddresses: Freeze,

impl<T> Freeze for Call<T>
where <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for GenesisConfig<T>

impl<T> Freeze for Pallet<T>

impl Freeze for Nodes

impl Freeze for RootHash

impl<T, I> Freeze for Call<T, I>

impl<T, I> Freeze for Pallet<T, I>

impl Freeze for Multisigs

impl<BlockNumber> Freeze for Timepoint<BlockNumber>
where BlockNumber: Freeze,

impl<BlockNumber, Balance, AccountId, MaxApprovals> Freeze for Multisig<BlockNumber, Balance, AccountId, MaxApprovals>
where Balance: Freeze, AccountId: Freeze, BlockNumber: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::BlockNumberProvider as BlockNumberProvider>::BlockNumber: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <<T as Config>::BlockNumberProvider as BlockNumberProvider>::BlockNumber: Freeze,

impl<T> Freeze for MigrateToV1<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl<AssetId, Fractions, Deposit, AccountId> Freeze for Details<AssetId, Fractions, Deposit, AccountId>
where AssetId: Freeze, Fractions: Freeze, Deposit: Freeze, AccountId: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::NftCollectionId: Freeze, <T as Config>::NftId: Freeze, <T as Config>::AssetId: Freeze, <<T as Config>::Lookup as StaticLookup>::Source: Freeze, <T as Config>::AssetBalance: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::NftCollectionId: Freeze, <T as Config>::NftId: Freeze, <T as Config>::AssetBalance: Freeze, <T as Config>::AssetId: Freeze, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for Account

impl Freeze for Attribute

impl Freeze for Item

impl<AccountId> Freeze for AttributeNamespace<AccountId>
where AccountId: Freeze,

impl<AccountId, Deposit, Approvals> Freeze for ItemDetails<AccountId, Deposit, Approvals>
where AccountId: Freeze, Approvals: Freeze, Deposit: Freeze,

impl<AccountId, DepositBalance> Freeze for OldCollectionDetails<AccountId, DepositBalance>
where AccountId: Freeze, DepositBalance: Freeze,

impl<AccountId, DepositBalance> Freeze for CollectionDetails<AccountId, DepositBalance>
where AccountId: Freeze, DepositBalance: Freeze,

impl<Amount> Freeze for PriceWithDirection<Amount>
where Amount: Freeze,

impl<CollectionId> Freeze for MintType<CollectionId>
where CollectionId: Freeze,

impl<CollectionId> Freeze for PalletAttributes<CollectionId>
where CollectionId: Freeze,

impl<CollectionId, ItemId, AccountId, Amount> Freeze for ItemTip<CollectionId, ItemId, AccountId, Amount>
where CollectionId: Freeze, ItemId: Freeze, AccountId: Freeze, Amount: Freeze,

impl<CollectionId, ItemId, AccountId, Deadline> Freeze for PreSignedAttributes<CollectionId, ItemId, AccountId, Deadline>
where CollectionId: Freeze, ItemId: Freeze, Deadline: Freeze, AccountId: Freeze,

impl<CollectionId, ItemId, AccountId, Deadline, Balance> Freeze for PreSignedMint<CollectionId, ItemId, AccountId, Deadline, Balance>
where CollectionId: Freeze, ItemId: Freeze, Deadline: Freeze, AccountId: Freeze, Balance: Freeze,

impl<CollectionId, ItemId, ItemPriceWithDirection, Deadline> Freeze for PendingSwap<CollectionId, ItemId, ItemPriceWithDirection, Deadline>
where CollectionId: Freeze, Deadline: Freeze, ItemId: Freeze, ItemPriceWithDirection: Freeze,

impl<Deposit, StringLimit> Freeze for CollectionMetadata<Deposit, StringLimit>
where Deposit: Freeze,

impl<Deposit, StringLimit> Freeze for ItemMetadata<Deposit, StringLimit>
where Deposit: Freeze,

impl<DepositBalance, AccountId> Freeze for AttributeDeposit<DepositBalance, AccountId>
where DepositBalance: Freeze, AccountId: Freeze,

impl<DepositBalance, AccountId> Freeze for ItemDeposit<DepositBalance, AccountId>
where AccountId: Freeze, DepositBalance: Freeze,

impl<DepositBalance, AccountId> Freeze for ItemMetadataDeposit<DepositBalance, AccountId>
where DepositBalance: Freeze, AccountId: Freeze,

impl<ItemId, Balance> Freeze for MintWitness<ItemId, Balance>
where ItemId: Freeze, Balance: Freeze,

impl<Price, BlockNumber, CollectionId> Freeze for CollectionConfig<Price, BlockNumber, CollectionId>
where CollectionId: Freeze, Price: Freeze, BlockNumber: Freeze,

impl<Price, BlockNumber, CollectionId> Freeze for MintSettings<Price, BlockNumber, CollectionId>
where CollectionId: Freeze, Price: Freeze, BlockNumber: Freeze,

impl<T> Freeze for MigrateToV1<T>

impl<T> Freeze for SubstrateWeight<T>

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Lookup as StaticLookup>::Source: Freeze, <T as Config<I>>::CollectionId: Freeze, <T as Config<I>>::ItemId: Freeze, <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <<T as Config<I>>::BlockNumberProvider as BlockNumberProvider>::BlockNumber: Freeze, <T as Config<I>>::OffchainSignature: Freeze, <T as Config>::AccountId: Freeze,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config<I>>::CollectionId: Freeze, <T as Config>::AccountId: Freeze, <T as Config<I>>::ItemId: Freeze, <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <<T as Config<I>>::BlockNumberProvider as BlockNumberProvider>::BlockNumber: Freeze,

impl<T, I> Freeze for Pallet<T, I>

impl Freeze for Queues

impl Freeze for Receipts

impl Freeze for Summary

impl<A> Freeze for WithMaximumOf<A>

impl<AccountId, BlockNumber, Balance> Freeze for ReceiptRecord<AccountId, BlockNumber, Balance>
where BlockNumber: Freeze, AccountId: Freeze, Balance: Freeze,

impl<Balance> Freeze for IssuanceInfo<Balance>
where Balance: Freeze,

impl<Balance, AccountId> Freeze for Bid<Balance, AccountId>
where Balance: Freeze, AccountId: Freeze,

impl<BlockNumber, Balance> Freeze for SummaryRecord<BlockNumber, Balance>
where BlockNumber: Freeze, Balance: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::CurrencyBalance: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <T as Config>::CurrencyBalance: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for OnEmptyQueueTotals<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for NoCounterpart<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for Owners

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Lookup as StaticLookup>::Source: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl Freeze for BondType

impl Freeze for PoolState

impl Freeze for Admin

impl Freeze for Runtime

impl Freeze for MaxPools

impl Freeze for Metadata

impl<AccountId> Freeze for CommissionClaimPermission<AccountId>
where AccountId: Freeze,

impl<AccountId> Freeze for OldPoolRoles<AccountId>
where AccountId: Freeze,

impl<AccountId> Freeze for PoolRoles<AccountId>
where AccountId: Freeze,

impl<B> Freeze for OldRewardPool<B>
where B: Freeze,

impl<Balance> Freeze for BondExtra<Balance>
where Balance: Freeze,

impl<BlockNumber> Freeze for CommissionChangeRate<BlockNumber>
where BlockNumber: Freeze,

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

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze, <<T as Config>::Lookup as StaticLookup>::Source: Freeze, <T as Config>::AccountId: Freeze, <<T as Config>::BlockNumberProvider as BlockNumberProvider>::BlockNumber: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze, <<T as Config>::BlockNumberProvider as BlockNumberProvider>::BlockNumber: Freeze,

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

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

impl<T> Freeze for MigrateToV1<T>

impl<T> Freeze for OldBondedPoolInner<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze, <T as Config>::AccountId: Freeze,

impl<T> Freeze for MigrateToV2<T>

impl<T> Freeze for OldPoolMember<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for MigrateToV3<T>

impl<T> Freeze for OldBondedPoolInner<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze, <T as Config>::AccountId: Freeze,

impl<T> Freeze for MigrateToV5<T>

impl<T> Freeze for OldRewardPool<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::RewardCounter: Freeze, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for AllPoolMembers<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for BondedPool<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze, <T as Config>::AccountId: Freeze, <<T as Config>::BlockNumberProvider as BlockNumberProvider>::BlockNumber: Freeze,

impl<T> Freeze for BondedPoolInner<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze, <T as Config>::AccountId: Freeze, <<T as Config>::BlockNumberProvider as BlockNumberProvider>::BlockNumber: Freeze,

impl<T> Freeze for Commission<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::BlockNumberProvider as BlockNumberProvider>::BlockNumber: Freeze, <T as Config>::AccountId: Freeze,

impl<T> Freeze for PoolMember<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze, <T as Config>::RewardCounter: Freeze,

impl<T> Freeze for RewardPool<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::RewardCounter: Freeze, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for SubPools<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for TotalUnbondingPools<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for UnbondPool<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for SubstrateWeight<T>

impl<T, MaxPools> Freeze for DelegationStakeMigration<T, MaxPools>

impl<T, Staking> Freeze for TransferStake<T, Staking>
where <T as Config>::RuntimeEvent: Sized,

impl<T, Staking, Delegation> Freeze for DelegateStake<T, Staking, Delegation>
where <T as Config>::RuntimeEvent: Sized,

impl<T, U> Freeze for MigrateToV4<T, U>

impl<T> Freeze for Pallet<T>
where <T as Config>::RuntimeEvent: Sized,

impl Freeze for Event

impl Freeze for Reports

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for MigrateToV1<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>
where <T as Config>::RuntimeEvent: Sized,

impl Freeze for MaxPages

impl Freeze for Test

impl<Prefix, Value, ValuesPerNewPage> Freeze for StoragePagedList<Prefix, Value, ValuesPerNewPage>

impl<T, I> Freeze for Call<T, I>

impl<T, I> Freeze for Pallet<T, I>

impl<T, I> Freeze for ListPrefix<T, I>

impl Freeze for Op

impl Freeze for Something

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze, <T as Config>::AccountId: Freeze,

impl<T> Freeze for CompositeStruct<T>
where <T as Config>::RuntimeEvent: Sized, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::RuntimeParameters: Freeze,

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::RuntimeParameters as AggregatedKeyValue>::Key: Freeze, <<T as Config>::RuntimeParameters as AggregatedKeyValue>::Value: Freeze,

impl<T> Freeze for Pallet<T>

impl Freeze for StatusFor

impl<AccountId, Balance> Freeze for OldRequestStatus<AccountId, Balance>
where AccountId: Freeze, Balance: Freeze,

impl<AccountId, Ticket> Freeze for RequestStatus<AccountId, Ticket>
where AccountId: Freeze, Ticket: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::Hash: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::Hash: Freeze,

impl<T> Freeze for Migration<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for Proxies

impl<AccountId, Hash, BlockNumber> Freeze for Announcement<AccountId, Hash, BlockNumber>
where AccountId: Freeze, Hash: Freeze, BlockNumber: Freeze,

impl<AccountId, ProxyType, BlockNumber> Freeze for ProxyDefinition<AccountId, ProxyType, BlockNumber>
where AccountId: Freeze, ProxyType: Freeze, BlockNumber: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Lookup as StaticLookup>::Source: Freeze, <T as Config>::ProxyType: Freeze, <<T as Config>::BlockNumberProvider as BlockNumberProvider>::BlockNumber: Freeze, <<T as Config>::CallHasher as Hash>::Output: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <T as Config>::ProxyType: Freeze, <<T as Config>::CallHasher as Hash>::Output: Freeze, <<T as Config>::BlockNumberProvider as BlockNumberProvider>::BlockNumber: Freeze, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for CheckPermissionsViewFunction<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::RuntimeCall: Freeze, <T as Config>::ProxyType: Freeze,

impl<T> Freeze for IsSupersetViewFunction<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::ProxyType: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for IdToIndex

impl Freeze for IndexToId

impl Freeze for Members

impl Freeze for Voting

impl Freeze for Geometric

impl Freeze for Linear

impl Freeze for Unit

impl<T> Freeze for SubstrateWeight<T>

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Lookup as StaticLookup>::Source: Freeze, <<T as Config<I>>::Polls as Polling<Tally<T, I, Pallet<T, I>>>>::Index: Freeze,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config<I>>::Polls as Polling<Tally<T, I, Pallet<T, I>>>>::Index: Freeze,

impl<T, I> Freeze for Pallet<T, I>

impl<T, I> Freeze for EnsureOfRank<T, I>

impl<T, I, M> Freeze for Tally<T, I, M>

impl<T, I, const MIN_RANK: u16> Freeze for EnsureMember<T, I, MIN_RANK>

impl<T, I, const MIN_RANK: u16> Freeze for EnsureRanked<T, I, MIN_RANK>

impl<T, I, const MIN_RANK: u16> Freeze for EnsureRankedMember<T, I, MIN_RANK>

impl Freeze for Proxy

impl<BlockNumber, Balance, Friends> Freeze for ActiveRecovery<BlockNumber, Balance, Friends>
where BlockNumber: Freeze, Balance: Freeze, Friends: Freeze,

impl<BlockNumber, Balance, Friends> Freeze for RecoveryConfig<BlockNumber, Balance, Friends>
where BlockNumber: Freeze, Balance: Freeze, Friends: Freeze,

impl<T> Freeze for DepositKind<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Lookup as StaticLookup>::Source: Freeze, <<T as Config>::BlockNumberProvider as BlockNumberProvider>::BlockNumber: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for Curve

impl<AccountId, Balance> Freeze for Deposit<AccountId, Balance>
where AccountId: Freeze, Balance: Freeze,

impl<BlockConverter, T, I> Freeze for MigrateBlockNumberProvider<BlockConverter, T, I>

impl<BlockNumber> Freeze for DecidingStatus<BlockNumber>
where BlockNumber: Freeze,

impl<Id, Balance, Moment, const N: usize> Freeze for Track<Id, Balance, Moment, N>
where Id: Freeze, Balance: Freeze, Moment: Freeze,

impl<T> Freeze for SubstrateWeight<T>

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized, <<T as Config<I>>::Tracks as TracksInfo<<<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance, <<T as Config<I>>::BlockNumberProvider as BlockNumberProvider>::BlockNumber, 25>>::Id: Freeze, <T as Config>::Hash: Freeze, <<T as Config<I>>::BlockNumberProvider as BlockNumberProvider>::BlockNumber: Freeze,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized, <<T as Config<I>>::Tracks as TracksInfo<<<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance, <<T as Config<I>>::BlockNumberProvider as BlockNumberProvider>::BlockNumber, 25>>::Id: Freeze, <T as Config>::AccountId: Freeze, <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <T as Config<I>>::Tally: Freeze, <T as Config>::Hash: Freeze,

impl<T, I> Freeze for ReferendumInfoFor_Storage_Instance<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for MigrateV0ToV1<T, I>

impl<T, I> Freeze for ReferendumInfoFor_Storage_Instance<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for Pallet<T, I>

impl<TrackId, RuntimeOrigin, Moment, Call, Balance, Tally, AccountId, ScheduleAddress> Freeze for ReferendumInfo<TrackId, RuntimeOrigin, Moment, Call, Balance, Tally, AccountId, ScheduleAddress>
where Moment: Freeze, TrackId: Freeze, RuntimeOrigin: Freeze, Call: Freeze, Tally: Freeze, AccountId: Freeze, Balance: Freeze, ScheduleAddress: Freeze,

impl<TrackId, RuntimeOrigin, Moment, Call, Balance, Tally, AccountId, ScheduleAddress> Freeze for ReferendumInfo<TrackId, RuntimeOrigin, Moment, Call, Balance, Tally, AccountId, ScheduleAddress>
where Moment: Freeze, TrackId: Freeze, RuntimeOrigin: Freeze, Call: Freeze, Tally: Freeze, AccountId: Freeze, Balance: Freeze, ScheduleAddress: Freeze,

impl<TrackId, RuntimeOrigin, Moment, Call, Balance, Tally, AccountId, ScheduleAddress> Freeze for ReferendumStatus<TrackId, RuntimeOrigin, Moment, Call, Balance, Tally, AccountId, ScheduleAddress>
where TrackId: Freeze, RuntimeOrigin: Freeze, Call: Freeze, Moment: Freeze, Tally: Freeze, AccountId: Freeze, Balance: Freeze, ScheduleAddress: Freeze,

impl<const N: usize> Freeze for StringLike<N>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for Code

impl Freeze for BlockTag

impl Freeze for CallType

impl Freeze for Error

impl Freeze for Account

impl Freeze for Block

impl Freeze for Byte

impl Freeze for Bytes

impl Freeze for Bytes256

impl Freeze for Bytes8

impl Freeze for CallLog

impl Freeze for Filter

impl Freeze for Log

impl Freeze for Diff

impl Freeze for ExecError

impl<Address, Signature, E> Freeze for UncheckedExtrinsic<Address, Signature, E>
where <<E as EthExtra>::Config as Config>::RuntimeCall: Freeze, Address: Freeze, Signature: Freeze, <E as EthExtra>::Extension: Freeze,

impl<Balance> Freeze for DepositLimit<Balance>
where Balance: Freeze,

impl<Balance> Freeze for StorageDeposit<Balance>
where Balance: Freeze,

impl<Balance> Freeze for CodeUploadReturnValue<Balance>
where Balance: Freeze,

impl<Balance> Freeze for EthTransactInfo<Balance>
where Balance: Freeze,

impl<Gas> Freeze for CallTrace<Gas>
where Gas: Freeze,

impl<Gas, GasMapper> Freeze for CallTracer<Gas, GasMapper>
where GasMapper: Freeze,

impl<R, Balance> Freeze for ContractResult<R, Balance>
where Balance: Freeze, R: Freeze,

impl<T> Freeze for Origin<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::Hash: Sized, <<T as Config>::Time as Time>::Moment: Sized, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Sized + Freeze, <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for CallSetup<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for Contract<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for GasMeter<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for AccountId32Mapper<T>

impl<T> Freeze for BareCallBuilder<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::RuntimeOrigin: Freeze, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for BareInstantiateBuilder<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::RuntimeOrigin: Freeze, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for CallBuilder<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::RuntimeOrigin: Freeze, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for Contract<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for InstantiateBuilder<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::RuntimeOrigin: Freeze, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for InstantiateWithCodeBuilder<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::RuntimeOrigin: Freeze, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for ProxyType

impl Freeze for Call

impl Freeze for Error

impl Freeze for Event

impl Freeze for Call

impl Freeze for Event

impl Freeze for Origin

impl Freeze for Call

impl Freeze for Error

impl Freeze for Event

impl Freeze for Mode

impl Freeze for Pays

impl Freeze for Phase

impl Freeze for Call

impl Freeze for Error

impl Freeze for Event

impl Freeze for Call

impl Freeze for Error

impl Freeze for Event

impl Freeze for Call

impl Freeze for Error

impl Freeze for Event

impl Freeze for Event

impl Freeze for Call

impl Freeze for Error

impl Freeze for Event

impl Freeze for Call1

impl Freeze for Call2

impl Freeze for Call3

impl Freeze for Error

impl Freeze for Event1

impl Freeze for Event2

impl Freeze for Error

impl Freeze for Event1

impl Freeze for Event2

impl Freeze for Call

impl Freeze for Error

impl Freeze for Event

impl Freeze for Reasons

impl Freeze for Call

impl Freeze for Error

impl Freeze for Event

impl Freeze for Call

impl Freeze for Error

impl Freeze for Event

impl Freeze for Call

impl Freeze for Error

impl Freeze for Event

impl Freeze for Call

impl Freeze for Error

impl Freeze for Event

impl Freeze for Call

impl Freeze for Error

impl Freeze for Event

impl Freeze for Call

impl Freeze for Error

impl Freeze for Event

impl Freeze for Call

impl Freeze for Error

impl Freeze for Event

impl Freeze for CallType

impl Freeze for Call

impl Freeze for Error

impl Freeze for Event

impl Freeze for Code

impl Freeze for Call

impl Freeze for Error

impl Freeze for Event

impl Freeze for Call

impl Freeze for Error

impl Freeze for Event

impl Freeze for Progress

impl Freeze for Call

impl Freeze for Releases

impl Freeze for Event

impl Freeze for Call

impl Freeze for Error

impl Freeze for Event

impl Freeze for Call

impl Freeze for Error

impl Freeze for Event

impl Freeze for Call

impl Freeze for Error

impl Freeze for Event

impl Freeze for Origin

impl Freeze for Call

impl Freeze for Event

impl Freeze for Era

impl Freeze for TrieError

impl Freeze for Call

impl Freeze for WildAsset

impl Freeze for Response

impl Freeze for Junction

impl Freeze for NetworkId

impl Freeze for Junctions

impl Freeze for WildAsset

impl Freeze for Hint

impl Freeze for Response

impl Freeze for Junction

impl Freeze for NetworkId

impl Freeze for Junctions

impl Freeze for Outcome

impl Freeze for Response

impl Freeze for BodyId

impl Freeze for BodyPart

impl Freeze for Junction

impl Freeze for NetworkId

impl Freeze for Junctions

impl Freeze for AssetId

impl Freeze for Error

impl Freeze for Error

impl Freeze for Error

impl Freeze for Error

impl Freeze for Error

impl Freeze for Error

impl Freeze for Client

impl Freeze for Touch

impl Freeze for Touched

impl Freeze for Stake

impl Freeze for Unstake

impl Freeze for Staked

impl Freeze for Unstaked

impl Freeze for Block

impl Freeze for Burn

impl Freeze for Create

impl Freeze for Freeze

impl Freeze for Mint

impl Freeze for Refund

impl Freeze for SetTeam

impl Freeze for Thaw

impl Freeze for ThawAsset

impl Freeze for Touch

impl Freeze for Transfer

impl Freeze for Blocked

impl Freeze for Burned

impl Freeze for Created

impl Freeze for Deposited

impl Freeze for Destroyed

impl Freeze for Frozen

impl Freeze for Issued

impl Freeze for Thawed

impl Freeze for Touched

impl Freeze for Withdrawn

impl Freeze for Frozen

impl Freeze for Thawed

impl Freeze for Burn

impl Freeze for Burned

impl Freeze for Deposit

impl Freeze for DustLost

impl Freeze for Endowed

impl Freeze for Frozen

impl Freeze for Issued

impl Freeze for Locked

impl Freeze for Minted

impl Freeze for Rescinded

impl Freeze for Reserved

impl Freeze for Restored

impl Freeze for Slashed

impl Freeze for Suspended

impl Freeze for Thawed

impl Freeze for Transfer

impl Freeze for Unlocked

impl Freeze for Upgraded

impl Freeze for Withdraw

impl Freeze for Block

impl Freeze for Burn

impl Freeze for Create

impl Freeze for Freeze

impl Freeze for Mint

impl Freeze for Refund

impl Freeze for SetTeam

impl Freeze for Thaw

impl Freeze for ThawAsset

impl Freeze for Touch

impl Freeze for Transfer

impl Freeze for Blocked

impl Freeze for Burned

impl Freeze for Created

impl Freeze for Deposited

impl Freeze for Destroyed

impl Freeze for Frozen

impl Freeze for Issued

impl Freeze for Thawed

impl Freeze for Touched

impl Freeze for Withdrawn

impl Freeze for Frozen

impl Freeze for Thawed

impl Freeze for ReapPage

impl Freeze for Processed

impl Freeze for AsMulti

impl Freeze for Unify

impl Freeze for Burn

impl Freeze for BuyItem

impl Freeze for ClaimSwap

impl Freeze for Create

impl Freeze for Destroy

impl Freeze for ForceMint

impl Freeze for Mint

impl Freeze for PayTips

impl Freeze for Redeposit

impl Freeze for SetPrice

impl Freeze for SetTeam

impl Freeze for Transfer

impl Freeze for Burned

impl Freeze for Created

impl Freeze for Destroyed

impl Freeze for Issued

impl Freeze for TipSent

impl Freeze for Execute

impl Freeze for Send

impl Freeze for Attempted

impl Freeze for FeesPaid

impl Freeze for Notified

impl Freeze for Sent

impl Freeze for Block

impl Freeze for Burn

impl Freeze for Create

impl Freeze for Freeze

impl Freeze for Mint

impl Freeze for Refund

impl Freeze for SetTeam

impl Freeze for Thaw

impl Freeze for ThawAsset

impl Freeze for Touch

impl Freeze for Transfer

impl Freeze for Blocked

impl Freeze for Burned

impl Freeze for Created

impl Freeze for Deposited

impl Freeze for Destroyed

impl Freeze for Frozen

impl Freeze for Issued

impl Freeze for Thawed

impl Freeze for Touched

impl Freeze for Withdrawn

impl Freeze for Frozen

impl Freeze for Thawed

impl Freeze for AddProxy

impl Freeze for Announce

impl Freeze for KillPure

impl Freeze for Proxy

impl Freeze for Announced

impl Freeze for Call

impl Freeze for SetCode

impl Freeze for AuraApi

impl Freeze for Core

impl Freeze for Version

impl Freeze for DryRunApi

impl Freeze for DryRunXcm

impl Freeze for GetPreset

impl Freeze for Metadata

impl Freeze for Metadata

impl Freeze for NftsApi

impl Freeze for Attribute

impl Freeze for Owner

impl Freeze for ReviveApi

impl Freeze for Balance

impl Freeze for Call

impl Freeze for GasPrice

impl Freeze for Nonce

impl Freeze for TraceCall

impl Freeze for TraceTx

impl Freeze for QueryInfo

impl Freeze for Runtime

impl Freeze for PalletId

impl Freeze for Byte

impl Freeze for Bytes

impl Freeze for CallLog

impl Freeze for CodeInfo

impl Freeze for HeadData

impl Freeze for Id

impl Freeze for FixedU128

impl Freeze for Perbill

impl Freeze for Permill

impl Freeze for Public

impl Freeze for Slot

impl Freeze for KeyTypeId

impl Freeze for Digest

impl Freeze for Asset

impl Freeze for AssetId

impl Freeze for Assets

impl Freeze for Location

impl Freeze for Xcm

impl Freeze for Asset

impl Freeze for AssetId

impl Freeze for Assets

impl Freeze for Location

impl Freeze for Xcm

impl Freeze for Xcm

impl Freeze for PurgeKeys

impl Freeze for SetKeys

impl Freeze for Halted

impl Freeze for Migrated

impl Freeze for Slashed

impl Freeze for Remark

impl Freeze for SetCode

impl Freeze for Remarked

impl Freeze for Set

impl Freeze for Burn

impl Freeze for BuyItem

impl Freeze for Create

impl Freeze for Destroy

impl Freeze for Freeze

impl Freeze for Mint

impl Freeze for Redeposit

impl Freeze for SetPrice

impl Freeze for SetTeam

impl Freeze for Thaw

impl Freeze for Transfer

impl Freeze for Burned

impl Freeze for Created

impl Freeze for Destroyed

impl Freeze for Frozen

impl Freeze for Issued

impl Freeze for Thawed

impl Freeze for Batch

impl Freeze for BatchAll

impl Freeze for IfElse

impl<B> Freeze for ReceiptProvider<B>
where B: Freeze,

impl<Client> Freeze for SubmittedTransaction<Client>

impl<Client> Freeze for TransactionBuilder<Client>

impl<_0> Freeze for RawOrigin<_0>
where _0: Freeze,

impl<_0> Freeze for DispatchTime<_0>
where _0: Freeze,

impl<_0> Freeze for AttributeNamespace<_0>
where _0: Freeze,

impl<_0> Freeze for MintType<_0>
where _0: Freeze,

impl<_0> Freeze for PalletAttributes<_0>
where _0: Freeze,

impl<_0> Freeze for StorageDeposit<_0>
where _0: Freeze,

impl<_0> Freeze for QueryStatus<_0>
where _0: Freeze,

impl<_0> Freeze for BoundedBTreeSet<_0>

impl<_0> Freeze for BoundedVec<_0>

impl<_0> Freeze for WeakBoundedVec<_0>

impl<_0> Freeze for Ancestor<_0>
where _0: Freeze,

impl<_0> Freeze for SegmentTracker<_0>

impl<_0> Freeze for PerDispatchClass<_0>
where _0: Freeze,

impl<_0> Freeze for PoolInfo<_0>
where _0: Freeze,

impl<_0> Freeze for PoolStakerInfo<_0>
where _0: Freeze,

impl<_0> Freeze for AccountData<_0>
where _0: Freeze,

impl<_0> Freeze for BalanceLock<_0>
where _0: Freeze,

impl<_0> Freeze for BookState<_0>
where _0: Freeze,

impl<_0> Freeze for Neighbours<_0>
where _0: Freeze,

impl<_0> Freeze for Page<_0>
where _0: Freeze,

impl<_0> Freeze for Timepoint<_0>
where _0: Freeze,

impl<_0> Freeze for BitFlags1<_0>

impl<_0> Freeze for BitFlags2<_0>

impl<_0> Freeze for CollectionMetadata<_0>
where _0: Freeze,

impl<_0> Freeze for ItemMetadata<_0>
where _0: Freeze,

impl<_0> Freeze for PriceWithDirection<_0>
where _0: Freeze,

impl<_0> Freeze for CallTrace<_0>
where _0: Freeze,

impl<_0> Freeze for CodeUploadReturnValue<_0>
where _0: Freeze,

impl<_0> Freeze for FeeDetails<_0>
where _0: Freeze,

impl<_0> Freeze for InclusionFee<_0>
where _0: Freeze,

impl<_0> Freeze for CollectionMetadata<_0>
where _0: Freeze,

impl<_0> Freeze for ItemMetadata<_0>
where _0: Freeze,

impl<_0> Freeze for InboundDownwardMessage<_0>
where _0: Freeze,

impl<_0> Freeze for InboundHrmpMessage<_0>
where _0: Freeze,

impl<_0> Freeze for OutboundHrmpMessage<_0>
where _0: Freeze,

impl<_0> Freeze for Header<_0>
where _0: Freeze,

impl<_0> Freeze for DispatchErrorWithPostInfo<_0>
where _0: Freeze,

impl<_0> Freeze for CallDryRunEffects<_0>

impl<_0> Freeze for XcmDryRunEffects<_0>

impl<_0, _1> Freeze for ExistenceReason<_0, _1>
where _0: Freeze, _1: Freeze,

impl<_0, _1> Freeze for MigrationCursor<_0, _1>
where _1: Freeze, _0: Freeze,

impl<_0, _1> Freeze for BoundedBTreeMap<_0, _1>

impl<_0, _1> Freeze for IdAmount<_0, _1>
where _0: Freeze, _1: Freeze,

impl<_0, _1> Freeze for AccountInfo<_0, _1>
where _0: Freeze, _1: Freeze,

impl<_0, _1> Freeze for EventRecord<_0, _1>
where _0: Freeze,

impl<_0, _1> Freeze for Approval<_0, _1>
where _0: Freeze, _1: Freeze,

impl<_0, _1> Freeze for AssetMetadata<_0, _1>
where _0: Freeze, _1: Freeze,

impl<_0, _1> Freeze for ReserveData<_0, _1>
where _0: Freeze, _1: Freeze,

impl<_0, _1> Freeze for CandidateInfo<_0, _1>
where _0: Freeze, _1: Freeze,

impl<_0, _1> Freeze for ActiveCursor<_0, _1>
where _1: Freeze, _0: Freeze,

impl<_0, _1> Freeze for AttributeDeposit<_0, _1>
where _0: Freeze, _1: Freeze,

impl<_0, _1> Freeze for CollectionDetails<_0, _1>
where _0: Freeze, _1: Freeze,

impl<_0, _1> Freeze for ItemDeposit<_0, _1>
where _1: Freeze, _0: Freeze,

impl<_0, _1> Freeze for ItemMetadataDeposit<_0, _1>
where _0: Freeze, _1: Freeze,

impl<_0, _1> Freeze for MintWitness<_0, _1>
where _0: Freeze, _1: Freeze,

impl<_0, _1> Freeze for ContractResult<_0, _1>
where _1: Freeze, _0: Freeze,

impl<_0, _1> Freeze for RuntimeDispatchInfo<_0, _1>
where _1: Freeze, _0: Freeze,

impl<_0, _1> Freeze for CollectionDetails<_0, _1>
where _0: Freeze, _1: Freeze,

impl<_0, _1> Freeze for ItemDetails<_0, _1>
where _0: Freeze, _1: Freeze,

impl<_0, _1> Freeze for PersistedValidationData<_0, _1>
where _1: Freeze, _0: Freeze,

impl<_0, _1> Freeze for Block<_0, _1>
where _0: Freeze,

impl<_0, _1, _2> Freeze for AssetDetails<_0, _1, _2>
where _1: Freeze, _0: Freeze, _2: Freeze,

impl<_0, _1, _2> Freeze for Multisig<_0, _1, _2>
where _1: Freeze, _2: Freeze, _0: Freeze,

impl<_0, _1, _2> Freeze for CollectionConfig<_0, _1, _2>
where _1: Freeze, _0: Freeze,

impl<_0, _1, _2> Freeze for ItemDetails<_0, _1, _2>
where _0: Freeze, _2: Freeze, _1: Freeze,

impl<_0, _1, _2> Freeze for MintSettings<_0, _1, _2>
where _1: Freeze, _0: Freeze,

impl<_0, _1, _2> Freeze for Announcement<_0, _1, _2>
where _0: Freeze, _1: Freeze, _2: Freeze,

impl<_0, _1, _2> Freeze for ProxyDefinition<_0, _1, _2>
where _0: Freeze, _1: Freeze, _2: Freeze,

impl<_0, _1, _2, _3> Freeze for PoolInfo<_0, _1, _2, _3>
where _1: Freeze, _2: Freeze, _3: Freeze, _0: Freeze,

impl<_0, _1, _2, _3> Freeze for AssetAccount<_0, _1, _2, _3>
where _0: Freeze, _2: Freeze, _3: Freeze,

impl<_0, _1, _2, _3> Freeze for Details<_0, _1, _2, _3>
where _0: Freeze, _1: Freeze, _2: Freeze, _3: Freeze,

impl<_0, _1, _2, _3> Freeze for ItemTip<_0, _1, _2, _3>
where _0: Freeze, _1: Freeze, _2: Freeze, _3: Freeze,

impl<_0, _1, _2, _3> Freeze for PendingSwap<_0, _1, _2, _3>
where _0: Freeze, _3: Freeze, _2: Freeze,

impl<_0, _1, _2, _3> Freeze for PreSignedAttributes<_0, _1, _2, _3>
where _0: Freeze, _1: Freeze, _3: Freeze, _2: Freeze,

impl<_0, _1, _2, _3, _4> Freeze for PreSignedMint<_0, _1, _2, _3, _4>
where _0: Freeze, _1: Freeze, _3: Freeze, _2: Freeze, _4: Freeze,

impl<_1> Freeze for StorageWeightReclaim<_1>
where _1: Freeze,

impl Freeze for MaxLocks

impl Freeze for Runtime

impl Freeze for XcmConfig

impl Freeze for MaxLocks

impl Freeze for Runtime

impl Freeze for XcmConfig

impl Freeze for MockNet

impl Freeze for ParaA

impl Freeze for Relay

impl<Location, AssetId> Freeze for FromLocationToAsset<Location, AssetId>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::Hash: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for TrustedLockerCase<T>

impl<T> Freeze for ParachainXcmRouter<T>

impl Freeze for CallFlags

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl Freeze for Deposits

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for Claimant

impl Freeze for Status

impl<Balance, Id> Freeze for ClaimState<Balance, Id>
where Balance: Freeze, Id: Freeze,

impl<CycleIndex, Balance, Id> Freeze for ClaimantStatus<CycleIndex, Balance, Id>
where CycleIndex: Freeze, Balance: Freeze, Id: Freeze,

impl<CycleIndex, BlockNumber, Balance> Freeze for StatusType<CycleIndex, BlockNumber, Balance>
where CycleIndex: Freeze, BlockNumber: Freeze, Balance: Freeze,

impl<T> Freeze for SubstrateWeight<T>

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config<I>>::Paymaster as Pay>::Balance: Freeze, <<T as Config<I>>::Paymaster as Pay>::Id: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T, I> Freeze for Pallet<T, I>

impl<T> Freeze for Call<T>

impl<T> Freeze for Error<T>

impl<T> Freeze for GenesisConfig<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for Agenda

impl Freeze for Lookup

impl Freeze for Retries

impl<Name, Call, BlockNumber, PalletsOrigin, AccountId> Freeze for Scheduled<Name, Call, BlockNumber, PalletsOrigin, AccountId>
where Call: Freeze, PalletsOrigin: Freeze, Name: Freeze, BlockNumber: Freeze,

impl<Period> Freeze for RetryConfig<Period>
where Period: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::BlockNumberProvider as BlockNumberProvider>::BlockNumber: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::BlockNumberProvider as BlockNumberProvider>::BlockNumber: Freeze,

impl<T> Freeze for MigrateToV4<T>

impl<T> Freeze for CleanupAgendas<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for Members

impl Freeze for Pool

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Lookup as StaticLookup>::Source: Freeze, <T as Config<I>>::Score: Freeze,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for GenesisConfig<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for Pallet<T, I>

impl Freeze for KeyOwner

impl Freeze for NextKeys

impl<Period, Offset> Freeze for PeriodicSessions<Period, Offset>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Event<T>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::Keys: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::ValidatorId: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for ProvingTrie<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::Hash: Freeze,

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl<T, I> Freeze for NoteHistoricalRoot<T, I>

impl<T, Inner> Freeze for FindAccountFromAuthorIndex<T, Inner>

impl<const DISABLING_LIMIT_FACTOR: usize> Freeze for UpToLimitDisablingStrategy<DISABLING_LIMIT_FACTOR>

impl<const DISABLING_LIMIT_FACTOR: usize> Freeze for UpToLimitWithReEnablingDisablingStrategy<DISABLING_LIMIT_FACTOR>

impl<T> Freeze for Pallet<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::RuntimeOrigin as OriginTrait>::PalletsOrigin: Freeze,

impl<T> Freeze for Pallet<T>

impl<T, O> Freeze for Intermediate<T, O>
where T: Freeze, O: Freeze,

impl<T, S> Freeze for SkipCheckIfFeeless<T, S>
where S: Freeze,

impl Freeze for Judgement

impl Freeze for Bids

impl Freeze for Defending

impl Freeze for Founder

impl Freeze for Head

impl Freeze for Members

impl Freeze for NextHead

impl Freeze for Payouts

impl Freeze for Pot

impl Freeze for Rules

impl Freeze for Skeptic

impl Freeze for Votes

impl Freeze for Tally

impl Freeze for Vote

impl<AccountId, Balance> Freeze for BidKind<AccountId, Balance>
where Balance: Freeze, AccountId: Freeze,

impl<AccountId, Balance> Freeze for Bid<AccountId, Balance>
where AccountId: Freeze, Balance: Freeze,

impl<AccountId, Balance> Freeze for Candidacy<AccountId, Balance>
where Balance: Freeze, AccountId: Freeze,

impl<AccountId, Balance> Freeze for IntakeRecord<AccountId, Balance>
where AccountId: Freeze, Balance: Freeze,

impl<Balance> Freeze for GroupParams<Balance>
where Balance: Freeze,

impl<Balance, BlockNumber> Freeze for Payout<Balance, BlockNumber>
where Balance: Freeze, BlockNumber: Freeze,

impl<Balance, PayoutsVec> Freeze for PayoutRecord<Balance, PayoutsVec>
where Balance: Freeze, PayoutsVec: Freeze,

impl<BlockNumber> Freeze for Period<BlockNumber>
where BlockNumber: Freeze,

impl<T> Freeze for EnsureFounder<T>

impl<T> Freeze for SubstrateWeight<T>

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized, <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <<T as Config>::Lookup as StaticLookup>::Source: Freeze, <T as Config>::AccountId: Freeze,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T, I> Freeze for GenesisConfig<T, I>
where <T as Config>::RuntimeEvent: Sized, <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T, I> Freeze for Pallet<T, I>

impl<T, I, PastPayouts> Freeze for VersionUncheckedMigrateToV2<T, I, PastPayouts>
where <T as Config>::RuntimeEvent: Sized,

impl Freeze for Forcing

impl Freeze for ActiveEra

impl Freeze for Bonded

impl Freeze for ForceEra

impl Freeze for Ledger

impl Freeze for Payee

impl Freeze for SpanSlash

impl<AccountId> Freeze for RewardDestination<AccountId>
where AccountId: Freeze,

impl<AccountId> Freeze for EraRewardPoints<AccountId>

impl<AccountId, Balance> Freeze for PagedExposure<AccountId, Balance>
where Balance: Freeze,

impl<AccountId, Balance> Freeze for UnappliedSlash<AccountId, Balance>
where AccountId: Freeze, Balance: Freeze,

impl<Balance> Freeze for UnlockChunk<Balance>
where Balance: Freeze,

impl<DataProvider> Freeze for StaticTracker<DataProvider>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::CurrencyBalance: Freeze, <T as Config>::AccountId: Freeze,

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

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::CurrencyBalance: Freeze, <T as Config>::AccountId: Freeze,

impl<T> Freeze for MigrateToV12<T>

impl<T> Freeze for MigrateToV13<T>

impl<T> Freeze for MigrateToV14<T>

impl<T> Freeze for DisabledValidators_Storage_Instance<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for AllStakers<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for ConvertCurve<T>

impl<T> Freeze for DefaultExposureOf<T>

impl<T> Freeze for EraInfo<T>

impl<T> Freeze for ExposureOf<T>

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::CurrencyBalance: Freeze,

impl<T> Freeze for Nominations<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for StakingLedger<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <T as Config>::CurrencyBalance: Freeze,

impl<T> Freeze for UseValidatorsMap<T>

impl<T> Freeze for SubstrateWeight<T>

impl<T, P, N> Freeze for MigrateToV11<T, P, N>

impl<T, R> Freeze for FilterHistoricalOffences<T, R>

impl<const MAX: u32> Freeze for FixedNominationsQuota<MAX>

impl Freeze for Forcing

impl Freeze for ActiveEra

impl Freeze for Bonded

impl Freeze for ForceEra

impl Freeze for Ledger

impl Freeze for Payee

impl<AccountId> Freeze for RewardDestination<AccountId>
where AccountId: Freeze,

impl<AccountId> Freeze for SnapshotStatus<AccountId>
where AccountId: Freeze,

impl<AccountId> Freeze for OffenceRecord<AccountId>
where AccountId: Freeze,

impl<AccountId, Balance> Freeze for PagedExposure<AccountId, Balance>
where Balance: Freeze,

impl<Balance> Freeze for UnlockChunk<Balance>
where Balance: Freeze,

impl<DataProvider> Freeze for StaticTracker<DataProvider>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::CurrencyBalance: Freeze, <T as Config>::AccountId: Freeze,

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

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::CurrencyBalance: Freeze, <T as Config>::AccountId: Freeze,

impl<T> Freeze for StakingLedger<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <T as Config>::CurrencyBalance: Freeze,

impl<T> Freeze for Eras<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Rotator<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for AllStakers<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for BondedErasBound<T>

impl<T> Freeze for BoundedExposurePage<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::CurrencyBalance: Freeze,

impl<T> Freeze for EraRewardPoints<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::CurrencyBalance: Freeze,

impl<T> Freeze for Nominations<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for UnappliedSlash<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <T as Config>::CurrencyBalance: Freeze,

impl<T> Freeze for UseValidatorsMap<T>

impl<T> Freeze for SubstrateWeight<T>

impl<const MAX: u32> Freeze for FixedNominationsQuota<MAX>

impl Freeze for Mode

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for DefaultExposureOf<T>

impl Freeze for ProxyType

impl Freeze for Origin

impl Freeze for Fellows

impl Freeze for Spender

impl Freeze for Treasurer

impl Freeze for Burn

impl Freeze for MaxKeys

impl Freeze for Offset

impl Freeze for Period

impl Freeze for PotId

impl Freeze for Runtime

impl Freeze for Version

impl Freeze for XcmConfig

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl<T> Freeze for Call<T>

impl<T> Freeze for Pallet<T>

impl<AccountId> Freeze for Offence<AccountId>
where AccountId: Freeze,

impl<AccountId> Freeze for SessionReport<AccountId>

impl<AccountId> Freeze for ValidatorSetReport<AccountId>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl Freeze for ProxyType

impl Freeze for Origin

impl Freeze for Fellows

impl Freeze for Spender

impl Freeze for Treasurer

impl Freeze for BrokerId

impl Freeze for BrokerPot

impl Freeze for Burn

impl Freeze for MaxKeys

impl Freeze for MaxLocks

impl Freeze for Offset

impl Freeze for Period

impl Freeze for Runtime

impl Freeze for Version

impl Freeze for AssetHub

impl Freeze for BridgeHub

impl Freeze for Broker

impl Freeze for Encointer

impl Freeze for Fellows

impl Freeze for People

impl Freeze for Wnd

impl Freeze for XcmConfig

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl<T> Freeze for Call<T>

impl<T> Freeze for Pallet<T>

impl<T, AssetHubId> Freeze for XcmToAssetHub<T, AssetHubId>

impl<MaxKeyLen> Freeze for Progress<MaxKeyLen>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for MigrationTask<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl<T> Freeze for Call<T>
where <T as Config>::AccountId: Sized, <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Event<T>
where <T as Config>::AccountId: Sized + Freeze, <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl Freeze for Key

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Lookup as StaticLookup>::Source: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for CheckOnlySudoAccount<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for Something

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for DidUpdate

impl Freeze for Now

impl<T> Freeze for Call<T>
where <T as Config>::Moment: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for Reasons

impl Freeze for Tips

impl<AccountId, Balance, BlockNumber, Hash> Freeze for OpenTip<AccountId, Balance, BlockNumber, Hash>
where Hash: Freeze, AccountId: Freeze, Balance: Freeze, BlockNumber: Freeze,

impl<T> Freeze for SubstrateWeight<T>

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Lookup as StaticLookup>::Source: Freeze, <T as Config>::Hash: Freeze, <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::Hash: Freeze, <T as Config>::AccountId: Freeze, <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T, I> Freeze for UnreserveDeposits<T, I>

impl<T, I> Freeze for Pallet<T, I>

impl Freeze for Releases

impl<Balance> Freeze for FeeDetails<Balance>
where Balance: Freeze,

impl<Balance> Freeze for InclusionFee<Balance>
where Balance: Freeze,

impl<Balance, Weight> Freeze for RuntimeDispatchInfo<Balance, Weight>
where Weight: Freeze, Balance: Freeze,

impl<C, OU> Freeze for CurrencyAdapter<C, OU>

impl<F, OU> Freeze for FungibleAdapter<F, OU>

impl<M> Freeze for ConstFeeMultiplier<M>

impl<T> Freeze for Pre<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::OnChargeTransaction as OnChargeTransaction<T>>::Balance: Freeze, <T as Config>::AccountId: Freeze, <<T as Config>::OnChargeTransaction as OnChargeTransaction<T>>::LiquidityInfo: Freeze,

impl<T> Freeze for Val<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::OnChargeTransaction as OnChargeTransaction<T>>::Balance: Freeze, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::OnChargeTransaction as OnChargeTransaction<T>>::Balance: Freeze,

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for ChargeTransactionPayment<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::OnChargeTransaction as OnChargeTransaction<T>>::Balance: Freeze,

impl<T> Freeze for SubstrateWeight<T>

impl<T, S, V, M, X> Freeze for TargetedFeeAdjustment<T, S, V, M, X>

impl Freeze for Error

impl<C, P> Freeze for TransactionPayment<C, P>

impl Freeze for ByteFee

impl Freeze for EntryFee

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for Approvals

impl Freeze for Proposals

impl Freeze for Spends

impl<AccountId, Balance> Freeze for Proposal<AccountId, Balance>
where AccountId: Freeze, Balance: Freeze,

impl<AssetKind, AssetBalance, Beneficiary, BlockNumber, PaymentId> Freeze for SpendStatus<AssetKind, AssetBalance, Beneficiary, BlockNumber, PaymentId>
where AssetKind: Freeze, AssetBalance: Freeze, Beneficiary: Freeze, BlockNumber: Freeze, PaymentId: Freeze,

impl<Id> Freeze for PaymentState<Id>
where Id: Freeze,

impl<R> Freeze for TreasuryAccountId<R>

impl<T> Freeze for SubstrateWeight<T>

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized, <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <<T as Config>::Lookup as StaticLookup>::Source: Freeze, <<T as Config<I>>::Paymaster as Pay>::Balance: Freeze, <<T as Config<I>>::BlockNumberProvider as BlockNumberProvider>::BlockNumber: Freeze,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized, <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <T as Config>::AccountId: Freeze, <T as Config<I>>::AssetKind: Freeze, <<T as Config<I>>::Paymaster as Pay>::Balance: Freeze, <T as Config<I>>::Beneficiary: Freeze, <<T as Config<I>>::BlockNumberProvider as BlockNumberProvider>::BlockNumber: Freeze, <<T as Config<I>>::Paymaster as Pay>::Id: Freeze,

impl<T, I> Freeze for GenesisConfig<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for Pallet<T, I>

impl<T, I, UnreserveWeight> Freeze for Migration<T, I, UnreserveWeight>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for Account

impl Freeze for Attribute

impl Freeze for Item

impl<'a> Freeze for Attribute<'a>

impl<AccountId, DepositBalance> Freeze for CollectionDetails<AccountId, DepositBalance>
where AccountId: Freeze, DepositBalance: Freeze,

impl<AccountId, DepositBalance> Freeze for ItemDetails<AccountId, DepositBalance>
where AccountId: Freeze, DepositBalance: Freeze,

impl<DepositBalance, StringLimit> Freeze for CollectionMetadata<DepositBalance, StringLimit>
where DepositBalance: Freeze,

impl<DepositBalance, StringLimit> Freeze for ItemMetadata<DepositBalance, StringLimit>
where DepositBalance: Freeze,

impl<PalletInstance> Freeze for Collection<PalletInstance>

impl<PalletInstance> Freeze for Item<PalletInstance>

impl<T> Freeze for SubstrateWeight<T>

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config<I>>::CollectionId: Freeze, <<T as Config>::Lookup as StaticLookup>::Source: Freeze, <T as Config<I>>::ItemId: Freeze, <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized, <T as Config<I>>::CollectionId: Freeze, <T as Config>::AccountId: Freeze, <T as Config<I>>::ItemId: Freeze, <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T, I> Freeze for Pallet<T, I>

impl Freeze for Event

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl<T> Freeze for VerifySignature<T>
where <T as Config>::Signature: Freeze, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Call<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for Releases

impl Freeze for Vesting

impl<Balance, BlockNumber> Freeze for VestingInfo<Balance, BlockNumber>
where Balance: Freeze, BlockNumber: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Lookup as StaticLookup>::Source: Freeze, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::Hash: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::Hash: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for SubstrateWeight<T>

impl Freeze for Origin

impl Freeze for Queries

impl<BlockNumber> Freeze for QueryStatus<BlockNumber>
where BlockNumber: Freeze,

impl<ConsumerIdentifier, MaxConsumers> Freeze for RemoteLockedFungibleRecord<ConsumerIdentifier, MaxConsumers>

impl<F> Freeze for EnsureResponse<F>

impl<F, L> Freeze for EnsureXcm<F, L>

impl<Prefix, Body> Freeze for IsMajorityOfBody<Prefix, Body>

impl<Prefix, Body> Freeze for IsVoiceOfBody<Prefix, Body>

impl<RuntimeOrigin> Freeze for XcmPassthrough<RuntimeOrigin>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for AuthorizedAliasers<T>

impl<T> Freeze for LockTicket<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for ReduceTicket<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for UnlockTicket<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<Ticket, MAX> Freeze for AuthorizedAliasesEntry<Ticket, MAX>
where Ticket: Freeze,

impl<T, I> Freeze for Call<T, I>

impl<T, I> Freeze for Call<T, I>

impl<T, I> Freeze for Pallet<T, I>

impl<T, I> Freeze for Pallet<T, I>

impl Freeze for Bridges

impl<I> Freeze for HoldReason<I>

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for Error<T, I>

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized, <<T as Config<<T as Config<I>>::BridgeMessagesPalletInstance>>::ThisChain as Chain>::Balance: Freeze, <T as Config<<T as Config<I>>::BridgeMessagesPalletInstance>>::LaneId: Freeze,

impl<T, I> Freeze for GenesisConfig<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for Pallet<T, I>

impl<T, I, Lane, CreateLane, SourceRelativeLocation, BridgedUniversalLocation> Freeze for OpenBridgeForLane<T, I, Lane, CreateLane, SourceRelativeLocation, BridgedUniversalLocation>

impl Freeze for Bridge

impl<T> Freeze for BridgeWeight<T>

impl<T, I> Freeze for Call<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for Event<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for Pallet<T, I>
where <T as Config>::RuntimeEvent: Sized,

impl<T, I> Freeze for Pallet<T, I>

impl Freeze for Cli

impl<C, P> Freeze for FullDeps<C, P>

impl Freeze for Offset

impl Freeze for Period

impl Freeze for PotId

impl Freeze for Version

impl Freeze for Runtime

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl<AccountId, Assets> Freeze for AssetExists<AccountId, Assets>

impl<AccountId, Assets> Freeze for NonZeroIssuance<AccountId, Assets>

impl<AssetLocation> Freeze for ConcreteAssetFromSystem<AssetLocation>

impl<Inner> Freeze for NarrowOriginToSibling<Inner>

impl<LocationValue> Freeze for ConcreteNativeAssetFrom<LocationValue>

impl<R> Freeze for DealWithFees<R>

impl<R> Freeze for ToStakingPot<R>

impl<R, I> Freeze for AssetsToBlockAuthor<R, I>

impl<Runtime, WeightToFee, BalanceConverter, AssetInstance> Freeze for AssetFeeAsExistentialDepositMultiplier<Runtime, WeightToFee, BalanceConverter, AssetInstance>

impl<SystemParachainMatcher, Runtime> Freeze for RelayOrOtherSystemParachains<SystemParachainMatcher, Runtime>

impl<T> Freeze for AssetsFrom<T>

impl<TreasuryAccount, AccountIdConverter, T> Freeze for ToParentTreasury<TreasuryAccount, AccountIdConverter, T>

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

impl<Runtime> Freeze for CollatorSessionKey<Runtime>
where <Runtime as Config>::RuntimeEvent: Sized, <Runtime as Config>::AccountId: Freeze, <Runtime as Config>::ValidatorId: Freeze, <Runtime as Config>::Keys: Freeze,

impl<Runtime> Freeze for CollatorSessionKeys<Runtime>
where <Runtime as Config>::RuntimeEvent: Sized,

impl<Runtime> Freeze for ExtBuilder<Runtime>
where <Runtime as Config>::RuntimeEvent: Sized,

impl<Runtime, AllPalletsWithoutSystem> Freeze for RuntimeHelper<Runtime, AllPalletsWithoutSystem>

impl<RuntimeOrigin> Freeze for GovernanceOrigin<RuntimeOrigin>
where RuntimeOrigin: Freeze,

impl<N> Freeze for PenpalA<N>

impl<N> Freeze for PenpalB<N>

impl Freeze for Offset

impl Freeze for Period

impl Freeze for PotId

impl Freeze for Runtime

impl Freeze for Version

impl Freeze for XcmConfig

impl<AssetLocation, Origin> Freeze for AssetFromChain<AssetLocation, Origin>

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl<Prefix, Origin> Freeze for AssetPrefixFrom<Prefix, Origin>

impl<N> Freeze for PeopleRococo<N>

impl Freeze for ProxyType

impl Freeze for PotId

impl Freeze for Runtime

impl Freeze for Version

impl Freeze for XcmConfig

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl<N> Freeze for PeopleWestend<N>

impl Freeze for ProxyType

impl Freeze for PotId

impl Freeze for Runtime

impl Freeze for Version

impl Freeze for XcmConfig

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl Freeze for Opt

impl Freeze for Metrics

impl Freeze for State

impl Freeze for PeerData

impl Freeze for Metrics

impl Freeze for Metrics

impl Freeze for Cli

impl Freeze for RunCmd

impl<BlockNumber> Freeze for InboundDownwardMessage<BlockNumber>
where BlockNumber: Freeze,

impl<BlockNumber> Freeze for InboundHrmpMessage<BlockNumber>
where BlockNumber: Freeze,

impl<Id> Freeze for OutboundHrmpMessage<Id>
where Id: Freeze,

impl Freeze for Metrics

impl<AD> Freeze for DisputeDistributionSubsystem<AD>
where AD: Freeze,

impl Freeze for Error

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

impl<AD> Freeze for GossipSupport<AD>
where AD: Freeze,

impl Freeze for Metrics

impl<N, AD> Freeze for NetworkBridgeRx<N, AD>
where N: Freeze, AD: Freeze,

impl<N, AD> Freeze for NetworkBridgeTx<N, AD>
where N: Freeze, AD: Freeze,

impl Freeze for Error

impl Freeze for Config

impl Freeze for DbBackend

impl Freeze for Tick

impl Freeze for Config

impl Freeze for Metrics

impl Freeze for Meters

impl Freeze for Metrics

impl<T> Freeze for RxWorker<T>

impl<T> Freeze for ToWorker<T>

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

impl Freeze for Error

impl Freeze for Config

impl Freeze for Metrics

impl Freeze for Error

impl Freeze for Config

impl<Client> Freeze for ChainApiSubsystem<Client>

impl Freeze for Error

impl Freeze for Config

impl Freeze for Config

impl Freeze for Error

impl Freeze for Metrics

impl Freeze for Priority

impl Freeze for Config

impl Freeze for Metrics

impl Freeze for JobError

impl Freeze for Error

impl Freeze for Error

impl Freeze for Error

impl Freeze for Error

impl Freeze for Handshake

impl Freeze for PipeFd

impl<Client> !Freeze for RuntimeApiSubsystem<Client>

impl Freeze for Metronome

impl Freeze for Metrics

impl Freeze for PeerSet

impl Freeze for Protocol

impl Freeze for Error

impl Freeze for JfyiError

impl Freeze for Recipient

impl Freeze for Requests

impl Freeze for OurView

impl Freeze for View

impl<Req> Freeze for IncomingRequest<Req>
where Req: Freeze,

impl<Req> Freeze for IncomingRequestReceiver<Req>

impl<Req> Freeze for OutgoingResponseSender<Req>

impl<Req, FallbackReq> Freeze for OutgoingRequest<Req, FallbackReq>
where Req: Freeze, FallbackReq: Freeze,

impl<Response> Freeze for OutgoingResponse<Response>
where Response: Freeze,

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

impl<V1, V2> Freeze for CollationProtocols<V1, V2>
where V1: Freeze, V2: Freeze,

impl<V3> Freeze for ValidationProtocols<V3>
where V3: Freeze,

impl Freeze for Error

impl Freeze for Statement

impl Freeze for Config

impl Freeze for BitIndex

impl Freeze for PoV

impl Freeze for Proof

impl<BlockNumber> Freeze for Collation<BlockNumber>
where BlockNumber: Freeze,

impl<T> Freeze for Bitfield<T>

impl Freeze for Yield

impl<M> Freeze for ForwardSubsystem<M>

impl<M, S> Freeze for TestSubsystemContext<M, S>
where S: Freeze,

impl<T> Freeze for SingleItemSink<T>

impl<T> Freeze for SingleItemStream<T>

impl<Client> Freeze for DefaultSubsystemClient<Client>

impl<M> Freeze for NetworkBridgeEvent<M>
where M: Freeze,

impl Freeze for Error

impl Freeze for Error

impl Freeze for JfyiError

impl Freeze for View

impl Freeze for DbAdapter

impl Freeze for Fragment

impl Freeze for Config

impl Freeze for Validator

impl<D> Freeze for DbAdapter<D>
where D: Freeze,

impl<M, Mnested> Freeze for NestingSender<M, Mnested>

impl Freeze for CliConfig

impl Freeze for Consensus

impl Freeze for Runtime

impl Freeze for RunConfig

impl<Config> Freeze for Cli<Config>

impl<Config> Freeze for RelayChainCli<Config>

impl Freeze for Event

impl Freeze for Metrics

impl Freeze for BlockInfo

impl Freeze for Handle

impl<InitStateSpawner, InitStateSubsystem0, InitStateSubsystem1, InitStateSubsystem2, InitStateSubsystem3, InitStateSubsystem4, InitStateSubsystem5, InitStateSubsystem6, InitStateSubsystem7, InitStateSubsystem8, InitStateSubsystem9, InitStateSubsystem10, InitStateSubsystem11, InitStateSubsystem12, InitStateSubsystem13, InitStateSubsystem14, InitStateSubsystem15, InitStateSubsystem16, InitStateSubsystem17, InitStateSubsystem18, InitStateSubsystem19, InitStateSubsystem20, InitStateSubsystem21, InitStateSubsystem22, InitStateSubsystem23, InitStateBaggage0, InitStateBaggage1, InitStateBaggage2, InitStateBaggage3> Freeze for OverseerBuilder<InitStateSpawner, InitStateSubsystem0, InitStateSubsystem1, InitStateSubsystem2, InitStateSubsystem3, InitStateSubsystem4, InitStateSubsystem5, InitStateSubsystem6, InitStateSubsystem7, InitStateSubsystem8, InitStateSubsystem9, InitStateSubsystem10, InitStateSubsystem11, InitStateSubsystem12, InitStateSubsystem13, InitStateSubsystem14, InitStateSubsystem15, InitStateSubsystem16, InitStateSubsystem17, InitStateSubsystem18, InitStateSubsystem19, InitStateSubsystem20, InitStateSubsystem21, InitStateSubsystem22, InitStateSubsystem23, InitStateBaggage0, InitStateBaggage1, InitStateBaggage2, InitStateBaggage3>
where InitStateSubsystem0: Freeze, InitStateSubsystem1: Freeze, InitStateSubsystem2: Freeze, InitStateSubsystem3: Freeze, InitStateSubsystem4: Freeze, InitStateSubsystem5: Freeze, InitStateSubsystem6: Freeze, InitStateSubsystem7: Freeze, InitStateSubsystem8: Freeze, InitStateSubsystem9: Freeze, InitStateSubsystem10: Freeze, InitStateSubsystem11: Freeze, InitStateSubsystem12: Freeze, InitStateSubsystem13: Freeze, InitStateSubsystem14: Freeze, InitStateSubsystem15: Freeze, InitStateSubsystem16: Freeze, InitStateSubsystem17: Freeze, InitStateSubsystem18: Freeze, InitStateSubsystem19: Freeze, InitStateSubsystem20: Freeze, InitStateSubsystem21: Freeze, InitStateSubsystem22: Freeze, InitStateSubsystem23: Freeze, InitStateBaggage0: Freeze, InitStateBaggage1: Freeze, InitStateBaggage2: Freeze, InitStateBaggage3: Freeze, InitStateSpawner: Freeze,

impl<M> Freeze for OverseerSubsystemContext<M>
where M: Freeze,

impl<OutgoingWrapper> Freeze for OverseerSender<OutgoingWrapper>

impl<S> Freeze for SpawnGlue<S>
where S: Freeze,

impl<S, SupportsParachains> !Freeze for Overseer<S, SupportsParachains>

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

impl<T> Freeze for Missing<T>

impl Freeze for CliConfig

impl Freeze for BlockData

impl Freeze for HeadData

impl Freeze for Id

impl Freeze for Sibling

impl Freeze for UMPSignal

impl Freeze for CoreIndex

impl<'a> Freeze for CounterVecDefinition<'a>

impl<'a> Freeze for HistogramDefinition<'a>

impl<BlockNumber> Freeze for SchedulerParams<BlockNumber>
where BlockNumber: Freeze,

impl<H> Freeze for CandidateEvent<H>
where H: Freeze,

impl<H> Freeze for CandidateEvent<H>
where H: Freeze,

impl<H> Freeze for BackedCandidate<H>
where H: Freeze,

impl<H> Freeze for CandidateDescriptor<H>
where H: Freeze,

impl<H> Freeze for CandidateReceipt<H>
where H: Freeze,

impl<H> Freeze for CommittedCandidateReceipt<H>
where H: Freeze,

impl<H> Freeze for SigningContext<H>
where H: Freeze,

impl<H> Freeze for BackedCandidate<H>
where H: Freeze,

impl<H> Freeze for CandidateDescriptorV2<H>
where H: Freeze,

impl<H> Freeze for CandidateReceiptV2<H>
where H: Freeze,

impl<H> Freeze for CommittedCandidateReceiptV2<H>
where H: Freeze,

impl<H, N> Freeze for CoreState<H, N>
where N: Freeze, H: Freeze,

impl<H, N> Freeze for CoreState<H, N>
where N: Freeze, H: Freeze,

impl<H, N> Freeze for BackingState<H, N>
where N: Freeze,

impl<H, N> Freeze for CandidatePendingAvailability<H, N>
where N: Freeze, H: Freeze,

impl<H, N> Freeze for OccupiedCore<H, N>
where N: Freeze, H: Freeze,

impl<H, N> Freeze for PersistedValidationData<H, N>
where N: Freeze, H: Freeze,

impl<H, N> Freeze for BackingState<H, N>
where N: Freeze,

impl<H, N> Freeze for CandidatePendingAvailability<H, N>
where N: Freeze, H: Freeze,

impl<H, N> Freeze for OccupiedCore<H, N>
where N: Freeze, H: Freeze,

impl<HDR> Freeze for InherentData<HDR>
where HDR: Freeze,

impl<HDR> Freeze for InherentData<HDR>
where HDR: Freeze,

impl<K, V> Freeze for IndexedVec<K, V>

impl<N> Freeze for Constraints<N>
where N: Freeze,

impl<N> Freeze for CandidateCommitments<N>
where N: Freeze,

impl<N> Freeze for DisputeState<N>
where N: Freeze,

impl<N> Freeze for GroupRotationInfo<N>
where N: Freeze,

impl<N> Freeze for Constraints<N>
where N: Freeze,

impl<Payload, RealPayload> Freeze for Signed<Payload, RealPayload>
where Payload: Freeze,

impl<Payload, RealPayload> Freeze for UncheckedSigned<Payload, RealPayload>
where Payload: Freeze,

impl<T> Freeze for WellKnownKey<T>

impl Freeze for BabeDeps

impl<AuthorityId> Freeze for BeefyDeps<AuthorityId>

impl<B> Freeze for GrandpaDeps<B>

impl<C, P, SC, B, AuthorityId> Freeze for FullDeps<C, P, SC, B, AuthorityId>
where SC: Freeze,

impl Freeze for SlotRange

impl Freeze for Winning

impl Freeze for Claims

impl Freeze for Preclaims

impl Freeze for Signing

impl Freeze for Total

impl Freeze for Vesting

impl Freeze for Funds

impl Freeze for NewRaise

impl Freeze for Paras

impl Freeze for Accounts

impl Freeze for Statement

impl Freeze for Leases

impl<A, B, M, F> Freeze for ExponentialPrice<A, B, M, F>

impl<Account, Balance> Freeze for ParaInfoV1<Account, Balance>
where Account: Freeze, Balance: Freeze,

impl<Account, Balance> Freeze for ParaInfo<Account, Balance>
where Account: Freeze, Balance: Freeze,

impl<AccountId, Balance, BlockNumber, LeasePeriod> Freeze for FundInfo<AccountId, Balance, BlockNumber, LeasePeriod>
where AccountId: Freeze, Balance: Freeze, BlockNumber: Freeze, LeasePeriod: Freeze,

impl<AccountId, LeasePeriod> Freeze for ParachainTemporarySlot<AccountId, LeasePeriod>
where AccountId: Freeze, LeasePeriod: Freeze,

impl<Balance> Freeze for AccountStatus<Balance>
where Balance: Freeze,

impl<BlockNumber> Freeze for LastContribution<BlockNumber>
where BlockNumber: Freeze,

impl<BlockNumber> Freeze for AuctionStatus<BlockNumber>
where BlockNumber: Freeze,

impl<C> Freeze for ContainsParts<C>

impl<Parents, ParaId> Freeze for TreasuryArguments<Parents, ParaId>

impl<R> Freeze for DealWithFees<R>

impl<R> Freeze for ToAuthor<R>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze, <<<T as Config>::Leaser as Leaser<<<<T as Config>::Block as Block>::Header as Header>::Number>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze, <T as Config>::AccountId: Freeze, <<<T as Config>::Leaser as Leaser<<<<T as Config>::Block as Block>::Header as Header>::Number>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<<T as Config>::VestingSchedule as VestingSchedule<<T as Config>::AccountId>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<<T as Config>::VestingSchedule as VestingSchedule<<T as Config>::AccountId>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<<T as Config>::Auctioneer as Auctioneer<<<<T as Config>::Block as Block>::Header as Header>::Number>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<<T as Config>::Auctioneer as Auctioneer<<<<T as Config>::Block as Block>::Header as Header>::Number>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for PrevalidateAttests<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for ConstantPrice<T>

impl<T, UnlockParaIds> Freeze for VersionUncheckedMigrateToV1<T, UnlockParaIds>

impl<T, W, P> Freeze for ChildParachainRouter<T, W, P>

impl<XcmConfig, ExistentialDeposit, PriceForDelivery, ParaId, ToParaIdHelper> Freeze for ToParachainDeliveryHelper<XcmConfig, ExistentialDeposit, PriceForDelivery, ParaId, ToParaIdHelper>

impl Freeze for Counter

impl Freeze for Histogram

impl Freeze for Origin

impl Freeze for ParaKind

impl Freeze for Event

impl Freeze for Disputes

impl Freeze for Frozen

impl Freeze for Included

impl Freeze for Metrics

impl Freeze for Credits

impl Freeze for Revenue

impl Freeze for Heads

impl Freeze for Included

impl Freeze for Sessions

impl<BlockNumber> Freeze for InconsistentError<BlockNumber>
where BlockNumber: Freeze,

impl<BlockNumber> Freeze for V10HostConfiguration<BlockNumber>
where BlockNumber: Freeze,

impl<BlockNumber> Freeze for V11HostConfiguration<BlockNumber>
where BlockNumber: Freeze,

impl<BlockNumber> Freeze for V6HostConfiguration<BlockNumber>
where BlockNumber: Freeze,

impl<BlockNumber> Freeze for V7HostConfiguration<BlockNumber>
where BlockNumber: Freeze,

impl<BlockNumber> Freeze for V8HostConfiguration<BlockNumber>
where BlockNumber: Freeze,

impl<BlockNumber> Freeze for V9HostConfiguration<BlockNumber>
where BlockNumber: Freeze,

impl<BlockNumber> Freeze for HostConfiguration<BlockNumber>
where BlockNumber: Freeze,

impl<BlockNumber> Freeze for SessionChangeOutcome<BlockNumber>
where BlockNumber: Freeze,

impl<BlockNumber> Freeze for SessionChangeNotification<BlockNumber>
where BlockNumber: Freeze,

impl<H, N> Freeze for CandidatePendingAvailability<H, N>
where N: Freeze, H: Freeze,

impl<H, N> Freeze for CandidatePendingAvailability<H, N>
where N: Freeze, H: Freeze,

impl<Hash> Freeze for RelayParentInfo<Hash>
where Hash: Freeze,

impl<Hash, BlockNumber> Freeze for AllowedRelayParentsTracker<Hash, BlockNumber>
where BlockNumber: Freeze,

impl<Hash, BlockNumber> Freeze for AllowedRelayParentsTracker<Hash, BlockNumber>
where BlockNumber: Freeze,

impl<I, R, L> Freeze for SlashingReportHandler<I, R, L>

impl<KeyOwnerIdentification> Freeze for SlashingOffence<KeyOwnerIdentification>

impl<N> Freeze for AvailabilityBitfieldRecord<N>
where N: Freeze,

impl<N> Freeze for ParaPastCodeMeta<N>
where N: Freeze,

impl<N> Freeze for ReplacementTimes<N>
where N: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Call<T>
where <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::KeyOwnerProof: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::Hash: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance: Freeze, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Call<T>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Block as Block>::Header: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Call<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for MigrateToV7<T>

impl<T> Freeze for MigrateToV8<T>

impl<T> Freeze for MigrateToV9<T>

impl<T> Freeze for GenesisConfig<T>
where <<<T as Config>::Block as Block>::Header as Header>::Number: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for MigrateToV1<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for AvailabilityBitfields_Storage_Instance<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for PendingAvailabilityCommitments_Storage_Instance<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for PendingAvailability_Storage_Instance<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for MmrSetup<T>

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for RemoveUpgradeCooldownCostViewFunction<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T, SendXcm, LegacyLease, const TIMESLICE_PERIOD: u32> Freeze for MigrateToCoretime<T, SendXcm, LegacyLease, TIMESLICE_PERIOD>

impl<const M: u32> Freeze for BenchConfig<M>

impl Freeze for Call

impl Freeze for Origin

impl Freeze for Origin

impl Freeze for Balances

impl Freeze for Balances

impl Freeze for Runtime

impl Freeze for Value

impl Freeze for Runtime

impl Freeze for Runtime

impl Freeze for Runtime

impl Freeze for Runtime

impl Freeze for Runtime

impl Freeze for Runtime

impl<T> Freeze for Call<T>
where <T as Config>::AccountId: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Call<T>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Call<T>
where <T as Config>::AccountId: Freeze,

impl<T> Freeze for Call<T>

impl<T> Freeze for Call<T>

impl<T> Freeze for Call<T>

impl<T> Freeze for Call<T>

impl<T> Freeze for Call<T>

impl<T> Freeze for Call<T>

impl<T> Freeze for Call<T>

impl<T> Freeze for Call<T>

impl<T> Freeze for Call<T>

impl<T> Freeze for Call<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::AccountId: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl Freeze for Balances

impl Freeze for Balances

impl Freeze for Runtime

impl<T> Freeze for Call<T>
where <T as Config>::AccountId: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Call<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Pallet<T>

impl Freeze for Runtime

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl !Freeze for Error

impl Freeze for Chain

impl Freeze for NewFull

impl<'a, Spawner, RuntimeClient> Freeze for OverseerGenArgs<'a, Spawner, RuntimeClient>
where Spawner: Freeze,

impl<B> Freeze for SelectRelayChain<B>

impl<OverseerGenerator> Freeze for NewFullParams<OverseerGenerator>
where OverseerGenerator: Freeze,

impl<OverseerGenerator, Network> !Freeze for PolkadotServiceBuilder<OverseerGenerator, Network>

impl Freeze for Error

impl Freeze for JfyiError

impl<'a, Ctx> Freeze for DrainMisbehaviors<'a, Ctx>
where <Ctx as Context>::AuthorityId: Freeze,

impl<Candidate, Digest> Freeze for Statement<Candidate, Digest>
where Candidate: Freeze, Digest: Freeze,

impl<Candidate, Digest, AuthorityId, Signature> Freeze for Misbehavior<Candidate, Digest, AuthorityId, Signature>
where Candidate: Freeze, Signature: Freeze, Digest: Freeze, AuthorityId: Freeze,

impl<Candidate, Digest, AuthorityId, Signature> Freeze for SignedStatement<Candidate, Digest, AuthorityId, Signature>
where Signature: Freeze, AuthorityId: Freeze, Candidate: Freeze, Digest: Freeze,

impl<Candidate, Digest, AuthorityId, Signature> Freeze for UnauthorizedStatement<Candidate, Digest, AuthorityId, Signature>
where Signature: Freeze, AuthorityId: Freeze, Candidate: Freeze, Digest: Freeze,

impl<Candidate, Digest, Signature> Freeze for DoubleSign<Candidate, Digest, Signature>
where Candidate: Freeze, Signature: Freeze, Digest: Freeze,

impl<Candidate, Digest, Signature> Freeze for ValidityDoubleVote<Candidate, Digest, Signature>
where Candidate: Freeze, Signature: Freeze, Digest: Freeze,

impl<Ctx> Freeze for CandidateData<Ctx>
where <Ctx as Context>::GroupId: Freeze, <Ctx as Context>::Candidate: Freeze,

impl<Ctx> Freeze for Table<Ctx>

impl<Digest, Group> Freeze for Summary<Digest, Group>
where Digest: Freeze, Group: Freeze,

impl<Group, Candidate, AuthorityId, Signature> Freeze for AttestedCandidate<Group, Candidate, AuthorityId, Signature>
where Group: Freeze, Candidate: Freeze,

impl<Signature> Freeze for ValidityAttestation<Signature>
where Signature: Freeze,

impl Freeze for Strategy

impl Freeze for TestState

impl Freeze for TestState

impl Freeze for ChartItem

impl Freeze for BrokerId

impl Freeze for BrokerPot

impl Freeze for MaxLocks

impl Freeze for Offset

impl Freeze for Period

impl Freeze for Prefix

impl Freeze for Runtime

impl Freeze for Version

impl Freeze for XcmConfig

impl<A, F> Freeze for TestDeliveryPrice<A, F>

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl Freeze for Runtime

impl Freeze for Opt

impl Freeze for XcmCall

impl Freeze for Error

impl Freeze for TestChain

impl<C> Freeze for UnsignedTransaction<C>
where <C as Chain>::Nonce: Freeze, <C as Chain>::Balance: Freeze, <C as Chain>::Call: Freeze, <C as Chain>::BlockNumber: Freeze, <C as Chain>::Hash: Freeze,

impl<C, Clnt, V> Freeze for FloatStorageValueMetric<C, Clnt, V>
where V: Freeze, Clnt: Freeze,

impl<C, E> Freeze for TransactionTracker<C, E>
where E: Freeze, <C as Chain>::Hash: Freeze,

impl<Call> Freeze for SudoCall<Call>

impl<Call> Freeze for UtilityCall<Call>

impl<Call> Freeze for MockedRuntimeUtilityPallet<Call>

impl<Header> Freeze for SyncHeader<Header>
where Header: Freeze,

impl<T> Freeze for Subscription<T>

impl Freeze for Error

impl<BlockId> Freeze for TrackedTransactionStatus<BlockId>
where BlockId: Freeze,

impl<SC, TC, LM> Freeze for Loop<SC, TC, LM>
where SC: Freeze, TC: Freeze, LM: Freeze,

impl<SC, TC, LM> Freeze for LoopMetrics<SC, TC, LM>
where SC: Freeze, TC: Freeze, LM: Freeze,

impl Freeze for Command

impl Freeze for Runtime

impl Freeze for Cli

impl<N> Freeze for Rococo<N>

impl Freeze for AssetHub

impl Freeze for Runtime

impl Freeze for UnitBody

impl Freeze for Version

impl Freeze for XcmConfig

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl Freeze for ProxyType

impl Freeze for Origin

impl Freeze for Fellows

impl Freeze for Spender

impl Freeze for Treasurer

impl Freeze for BrokerId

impl Freeze for BrokerPot

impl Freeze for Burn

impl Freeze for MaxKeys

impl Freeze for MaxLocks

impl Freeze for Prefix

impl Freeze for Runtime

impl Freeze for Version

impl Freeze for AssetHub

impl Freeze for BridgeHub

impl Freeze for Broker

impl Freeze for Contracts

impl Freeze for Encointer

impl Freeze for People

impl Freeze for Roc

impl Freeze for Tick

impl Freeze for Track

impl Freeze for Trick

impl Freeze for XcmConfig

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl<T> Freeze for Call<T>

impl<T> Freeze for Pallet<T>

impl Freeze for Error

impl Freeze for Error

impl Freeze for Role

impl Freeze for Service

impl<Client, Block, DhtEventStream> Freeze for Worker<Client, Block, DhtEventStream>
where DhtEventStream: Freeze, <Block as Block>::Hash: Freeze,

impl<A, C, PR> Freeze for ProposerFactory<A, C, PR>

impl<Block, C, A, PR> Freeze for Proposer<Block, C, A, PR>
where <Block as Block>::Hash: Freeze, <<Block as Block>::Header as Header>::Number: Freeze,

impl<'a, B, C> Freeze for BlockBuilderBuilder<'a, B, C>

impl<'a, B, C> Freeze for BlockBuilderBuilderStage1<'a, B, C>
where <B as Block>::Hash: Freeze,

impl<'a, B, C> Freeze for BlockBuilderBuilderStage2<'a, B, C>
where <B as Block>::Hash: Freeze, <<B as Block>::Header as Header>::Number: Freeze,

impl<'a, Block, C> Freeze for BlockBuilder<'a, Block, C>
where <Block as Block>::Hash: Freeze, <C as ProvideRuntimeApi<Block>>::Api: Freeze,

impl<Block> Freeze for BuiltBlock<Block>
where Block: Freeze, <Block as Block>::Hash: Freeze,

impl Freeze for ChainType

impl<'a, EHF> Freeze for GenesisConfigBuilderRuntimeCaller<'a, EHF>

impl<Block, B, E> Freeze for GenesisBlockBuilder<Block, B, E>
where E: Freeze,

impl<BlockNumber, T> Freeze for Forks<BlockNumber, T>
where T: Freeze,

impl<E, EHF> Freeze for ChainSpecBuilder<E, EHF>
where E: Freeze,

impl<E, EHF> Freeze for ChainSpec<E, EHF>
where E: Freeze,

impl !Freeze for Error

impl Freeze for Cors

impl Freeze for Database

impl Freeze for SyncMode

impl Freeze for RevertCmd

impl Freeze for RunCmd

impl Freeze for SignCmd

impl Freeze for VanityCmd

impl Freeze for VerifyCmd

impl Freeze for RpcParams

impl Freeze for Signals

impl<C> !Freeze for Runner<C>

impl Freeze for IoInfo

impl Freeze for UsageInfo

impl<'a, H, N> Freeze for Undo<'a, H, N>

impl<Block> !Freeze for ExecutionExtensions<Block>

impl<Block> !Freeze for Backend<Block>

impl<Block> !Freeze for BlockImportOperation<Block>

impl<Block> Freeze for UnpinWorkerMessage<Block>
where <Block as Block>::Hash: Freeze,

impl<Block> Freeze for FinalizeSummary<Block>
where <Block as Block>::Header: Freeze,

impl<Block> Freeze for ImportSummary<Block>
where <Block as Block>::Hash: Freeze, <Block as Block>::Header: Freeze,

impl<Block> Freeze for BlockImportNotification<Block>
where <Block as Block>::Hash: Freeze, <Block as Block>::Header: Freeze,

impl<Block> Freeze for ClientInfo<Block>
where <Block as Block>::Hash: Freeze, <<Block as Block>::Header as Header>::Number: Freeze,

impl<Block> Freeze for FinalityNotification<Block>
where <Block as Block>::Hash: Freeze, <Block as Block>::Header: Freeze,

impl<Block> Freeze for UnpinHandle<Block>

impl<Block> Freeze for UnpinHandleInner<Block>
where <Block as Block>::Hash: Freeze,

impl<Block> Freeze for Blockchain<Block>

impl<Block> Freeze for StorageNotifications<Block>

impl<Block, B> Freeze for ClientImportOperation<Block, B>
where <B as Backend<Block>>::BlockImportOperation: Freeze, <Block as Block>::Hash: Freeze, <Block as Block>::Header: Freeze,

impl<Block, Ext> Freeze for ExtensionBeforeBlock<Block, Ext>
where <<Block as Block>::Header as Header>::Number: Freeze,

impl<H> Freeze for StorageEventStream<H>

impl<H, N> Freeze for ImportOutcome<H, N>
where H: Freeze, N: Freeze,

impl<H, N> Freeze for LeafSet<H, N>

impl<H, N> Freeze for RemoveOutcome<H, N>
where H: Freeze, N: Freeze,

impl<Hash> Freeze for StorageNotification<Hash>
where Hash: Freeze,

impl<I, H, N> Freeze for FinalizationOutcome<I, H, N>
where I: Freeze,

impl<State, Block> Freeze for KeysIter<State, Block>
where <State as Backend<<<Block as Block>::Header as Header>::Hashing>>::RawIter: Freeze, State: Freeze,

impl<State, Block> Freeze for PairsIter<State, Block>
where <State as Backend<<<Block as Block>::Header as Header>::Hashing>>::RawIter: Freeze, State: Freeze,

impl<B> Freeze for RawIter<B>
where <B as Block>::Hash: Freeze,

impl<Block> !Freeze for Backend<Block>

impl<Block> !Freeze for BlockImportOperation<Block>

impl<Block> !Freeze for BlockchainDb<Block>

impl<Block> !Freeze for RefTrackingState<Block>

impl<Hasher> !Freeze for BenchmarkingState<Hasher>

impl<Hasher> Freeze for RawIter<Hasher>
where <Hasher as Hash>::Output: Freeze,

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

impl<B> !Freeze for Expectation<B>

impl<B> !Freeze for Expectation<B>

impl<B> !Freeze for Expectation<B>

impl<B> !Freeze for Expectation<B>

impl<B> !Freeze for Expectation<B>

impl<B> !Freeze for Expectation<B>

impl<B> Freeze for BlockImportWorkerMsg<B>
where <B as Block>::Hash: Freeze, <<B as Block>::Header as Header>::Number: Freeze,

impl<B> Freeze for ImportedState<B>
where <B as Block>::Hash: Freeze,

impl<B> Freeze for BufferedLinkSender<B>

impl<B> Freeze for MockImportQueue<B>

impl<B> Freeze for BasicQueue<B>

impl<B> Freeze for IncomingBlock<B>
where <B as Block>::Hash: Freeze, <B as Block>::Header: Freeze,

impl<B, Block> Freeze for LongestChain<B, Block>

impl<Block> Freeze for StateAction<Block>
where <Block as Block>::Hash: Freeze,

impl<Block> Freeze for StorageChanges<Block>
where <Block as Block>::Hash: Freeze,

impl<Block> Freeze for BlockCheckParams<Block>
where <Block as Block>::Hash: Freeze, <<Block as Block>::Header as Header>::Number: Freeze,

impl<Block> Freeze for BlockImportParams<Block>
where <Block as Block>::Header: Freeze, <Block as Block>::Hash: Freeze,

impl<BlockNumber> Freeze for BlockImportStatus<BlockNumber>
where BlockNumber: Freeze,

impl<T> Freeze for SharedData<T>

impl<'a, Block, I, C, S, CIDP> Freeze for ImportQueueParams<'a, Block, I, C, S, CIDP>
where I: Freeze, CIDP: Freeze, <<Block as Block>::Header as Header>::Number: Freeze,

impl<B> Freeze for Error<B>
where <B as Block>::Hash: Freeze,

impl<C, CIDP, N> Freeze for BuildVerifierParams<C, CIDP, N>
where CIDP: Freeze, N: Freeze,

impl<C, I, PF, SO, L, BS, N> Freeze for BuildAuraWorkerParams<C, I, PF, SO, L, BS, N>
where I: Freeze, PF: Freeze, SO: Freeze, L: Freeze, BS: Freeze, N: Freeze,

impl<C, P, CIDP, N> Freeze for AuraVerifier<C, P, CIDP, N>
where CIDP: Freeze, N: Freeze,

impl<C, SC, I, PF, SO, L, CIDP, BS, N> Freeze for StartAuraParams<C, SC, I, PF, SO, L, CIDP, BS, N>
where SC: Freeze, I: Freeze, PF: Freeze, SO: Freeze, L: Freeze, CIDP: Freeze, BS: Freeze, N: Freeze,

impl<Header> Freeze for SealVerificationError<Header>
where Header: Freeze,

impl<N> Freeze for CompatibilityMode<N>
where N: Freeze,

impl Freeze for Epoch

impl<'a, Block, BI, Client, CIDP, SelectChain, Spawn> Freeze for ImportQueueParams<'a, Block, BI, Client, CIDP, SelectChain, Spawn>
where BI: Freeze, SelectChain: Freeze, CIDP: Freeze,

impl<B> Freeze for Error<B>
where <B as Block>::Hash: Freeze,

impl<B> Freeze for BabeIntermediate<B>
where <B as Block>::Hash: Freeze, <<B as Block>::Header as Header>::Number: Freeze,

impl<B> Freeze for BabeWorker<B>

impl<B> Freeze for BabeWorkerHandle<B>

impl<B, C, SC, E, I, SO, L, CIDP, BS> Freeze for BabeParams<B, C, SC, E, I, SO, L, CIDP, BS>
where SC: Freeze, E: Freeze, I: Freeze, SO: Freeze, L: Freeze, CIDP: Freeze, BS: Freeze,

impl<Block> Freeze for BabeLink<Block>

impl<Block, Client, I> Freeze for BabeBlockImport<Block, Client, I>
where I: Freeze,

impl<Block, Client, SelectChain, CIDP> Freeze for BabeVerifier<Block, Client, SelectChain, CIDP>
where SelectChain: Freeze, CIDP: Freeze,

impl Freeze for Error

impl<B, C, SC> Freeze for Babe<B, C, SC>
where SC: Freeze,

impl Freeze for Error

impl<B> Freeze for JustificationRequest<B>
where <<B as Block>::Header as Header>::Number: Freeze,

impl<B, AuthorityId> Freeze for BeefyRPCLinks<B, AuthorityId>

impl<B, AuthorityId> Freeze for BeefyVoterLinks<B, AuthorityId>

impl<B, BE, C, N, P, R, S, AuthorityId> Freeze for BeefyParams<B, BE, C, N, P, R, S, AuthorityId>
where P: Freeze,

impl<B, Client> Freeze for BeefyJustifsRequestHandler<B, Client>

impl<B, N, S> Freeze for BeefyNetworkParams<B, N, S>

impl<Block, Backend, RuntimeApi, I, AuthorityId> Freeze for BeefyBlockImport<Block, Backend, RuntimeApi, I, AuthorityId>
where I: Freeze,

impl Freeze for Error

impl Freeze for ErrorCode

impl<Block, AuthorityId> Freeze for Beefy<Block, AuthorityId>

impl<E> Freeze for PersistedEpoch<E>
where E: Freeze,

impl<E> Freeze for PersistedEpochHeader<E>
where <E as Epoch>::Slot: Freeze,

impl<E> Freeze for EpochHeader<E>
where <E as Epoch>::Slot: Freeze,

impl<E> Freeze for IncrementedEpoch<E>
where E: Freeze,

impl<E, ERef> Freeze for ViableEpoch<E, ERef>
where E: Freeze, ERef: Freeze,

impl<H, Block> Freeze for HeaderBackendDescendentBuilder<H, Block>
where H: Freeze,

impl<Hash, Number> Freeze for EpochIdentifier<Hash, Number>
where Hash: Freeze, Number: Freeze,

impl<Hash, Number, E> Freeze for ViableEpochDescriptor<Hash, Number, E>
where <E as Epoch>::Slot: Freeze, Hash: Freeze, Number: Freeze,

impl<Hash, Number, E> Freeze for EpochChangesV0<Hash, Number, E>
where Number: Freeze,

impl<Hash, Number, E> Freeze for EpochChangesV1<Hash, Number, E>
where Number: Freeze,

impl<Hash, Number, E> Freeze for EpochChanges<Hash, Number, E>
where Number: Freeze,

impl Freeze for Error

impl Freeze for Error

impl Freeze for Config

impl<BE, Block> Freeze for FinalityProofProvider<BE, Block>

impl<Backend, Block, Client, SC> !Freeze for GrandpaBlockImport<Backend, Block, Client, SC>

impl<Block> Freeze for AuthoritySetHardFork<Block>
where <Block as Block>::Hash: Freeze, <<Block as Block>::Header as Header>::Number: Freeze,

impl<Block> Freeze for GrandpaJustification<Block>
where <Block as Block>::Hash: Freeze, <<Block as Block>::Header as Header>::Number: Freeze,

impl<Block> Freeze for WarpSyncFragment<Block>
where <Block as Block>::Header: Freeze, <Block as Block>::Hash: Freeze, <<Block as Block>::Header as Header>::Number: Freeze,

impl<Block> Freeze for WarpSyncProof<Block>

impl<Block, B> Freeze for VotingRulesBuilder<Block, B>

impl<Block, Backend> Freeze for NetworkProvider<Block, Backend>
where <<Block as Block>::Header as Header>::Number: Sized,

impl<Block, C, N, S, SC, VR> Freeze for GrandpaParams<Block, C, N, S, SC, VR>
where N: Freeze, S: Freeze, VR: Freeze, SC: Freeze,

impl<Block, C, SC> Freeze for LinkHalf<Block, C, SC>
where SC: Freeze,

impl<H, N> Freeze for AuthoritySet<H, N>
where N: Freeze,

impl<H, N> Freeze for SharedAuthoritySet<H, N>

impl<Header> Freeze for FinalityProof<Header>
where <Header as Header>::Hash: Freeze,

impl<N> Freeze for BeforeBestBlockBy<N>
where N: Freeze,

impl<AuthoritySet, VoterState, Block, ProofProvider> Freeze for Grandpa<AuthoritySet, VoterState, Block, ProofProvider>
where AuthoritySet: Freeze, VoterState: Freeze,

impl Freeze for Error

impl<'a, B, BI, SC, C, E, TP, CIDP, P> Freeze for SealBlockParams<'a, B, BI, SC, C, E, TP, CIDP, P>
where <B as Block>::Hash: Freeze,

impl<B, BI, E, C, TP, SC, CIDP, P> Freeze for InstantSealParams<B, BI, E, C, TP, SC, CIDP, P>
where BI: Freeze, E: Freeze, SC: Freeze, CIDP: Freeze,

impl<B, BI, E, C, TP, SC, CS, CIDP, P> Freeze for ManualSealParams<B, BI, E, C, TP, SC, CS, CIDP, P>
where BI: Freeze, E: Freeze, CS: Freeze, SC: Freeze, CIDP: Freeze,

impl<B, C> Freeze for BabeVerifier<B, C>

impl<B, C, P> Freeze for AuraConsensusDataProvider<B, C, P>

impl<B, C, P> Freeze for BabeConsensusDataProvider<B, C, P>

impl<B, F, CB> Freeze for FinalizeBlockParams<B, F, CB>
where <B as Block>::Hash: Freeze,

impl<C, S> Freeze for DelayedFinalizeParams<C, S>
where S: Freeze,

impl<Hash> Freeze for EngineCommand<Hash>
where Hash: Freeze,

impl<Hash> Freeze for CreatedBlock<Hash>
where Hash: Freeze,

impl<Hash> Freeze for ManualSeal<Hash>

impl<B> Freeze for Error<B>
where <B as Block>::Hash: Freeze,

impl<B, Algorithm> Freeze for PowVerifier<B, Algorithm>
where Algorithm: Freeze,

impl<B, I, C, S, Algorithm, CIDP> Freeze for PowBlockImport<B, I, C, S, Algorithm, CIDP>
where Algorithm: Freeze, I: Freeze, S: Freeze, <<B as Block>::Header as Header>::Number: Freeze,

impl<Block, Algorithm, L, Proof> Freeze for MiningHandle<Block, Algorithm, L, Proof>

impl<Block, Algorithm, Proof> Freeze for MiningBuild<Block, Algorithm, Proof>
where <Block as Block>::Hash: Freeze, <Algorithm as PowAlgorithm<Block>>::Difficulty: Freeze, Block: Freeze, Proof: Freeze,

impl<Difficulty> Freeze for PowAux<Difficulty>
where Difficulty: Freeze,

impl<Difficulty> Freeze for PowIntermediate<Difficulty>
where Difficulty: Freeze,

impl<H, D> Freeze for MiningMetadata<H, D>
where H: Freeze, D: Freeze,

impl<B> Freeze for SlotInfo<B>
where <B as Block>::Header: Freeze,

impl<Block, Proof> Freeze for SlotResult<Block, Proof>
where Block: Freeze, Proof: Freeze,

impl<H, S> Freeze for CheckedHeader<H, S>
where H: Freeze, S: Freeze,

impl<H> Freeze for WasmExecutor<H>

impl Freeze for Error

impl Freeze for WasmError

impl Freeze for Backtrace

impl Freeze for Instance

impl Freeze for Config

impl Freeze for Semantics

impl Freeze for Error

impl Freeze for Error

impl Freeze for RemoteErr

impl Freeze for Api

impl Freeze for Config

impl !Freeze for Error

impl !Freeze for DhtEvent

impl !Freeze for Event

impl Freeze for ParseErr

impl Freeze for Endpoint

impl Freeze for Message

impl Freeze for Event

impl Freeze for Keypair

impl Freeze for PublicKey

impl Freeze for Direction

impl Freeze for SetConfig

impl Freeze for Peer

impl Freeze for PeerStore

impl Freeze for SetId

impl Freeze for Signature

impl<'a> Freeze for Node<'a>

impl<B, H> !Freeze for NetworkWorker<B, H>

impl<B, H> Freeze for NetworkService<B, H>

impl<B, H, N> Freeze for FullNetworkConfiguration<B, H, N>
where <N as NetworkBackend<B, H>>::PeerStore: Freeze,

impl<Block, H, N> Freeze for Params<Block, H, N>
where <Block as Block>::Hash: Freeze, <N as NetworkBackend<Block, H>>::NotificationProtocolConfig: Freeze, <N as NetworkBackend<Block, H>>::BitswapConfig: Freeze, <N as NetworkBackend<Block, H>>::PeerStore: Freeze,

impl<K> Freeze for Secret<K>
where K: Freeze,

impl<T> Freeze for LruHashSet<T>

impl Freeze for Role

impl Freeze for SyncMode

impl Freeze for Direction

impl Freeze for Roles

impl<B> Freeze for BlockAnnouncesHandshake<B>
where <<B as Block>::Header as Header>::Number: Freeze, <B as Block>::Hash: Freeze,

impl<H> Freeze for BlockAnnounce<H>
where H: Freeze,

impl<H> Freeze for AnnouncementSummary<H>
where <H as Header>::Hash: Freeze, <H as Header>::Number: Freeze,

impl<Hash, Number> Freeze for FromBlock<Hash, Number>
where Hash: Freeze, Number: Freeze,

impl<Hash, Number> Freeze for BlockRequest<Hash, Number>
where Hash: Freeze, Number: Freeze,

impl<Header, Hash, Extrinsic> Freeze for BlockData<Header, Hash, Extrinsic>
where Hash: Freeze, Header: Freeze,

impl<Header, Hash, Extrinsic> Freeze for BlockResponse<Header, Hash, Extrinsic>

impl<B> Freeze for GossipEngine<B>

impl<H> Freeze for ValidationResult<H>
where H: Freeze,

impl<B, Client> Freeze for LightClientRequestHandler<B, Client>

impl<N, S> !Freeze for StatementHandler<N, S>

impl Freeze for FromBlock

impl Freeze for Direction

impl Freeze for SyncEvent

impl Freeze for BlockData

impl Freeze for BadPeer

impl<B> !Freeze for Expectation<B>

impl<B> !Freeze for Expectation<B>

impl<B> !Freeze for Expectation<B>

impl<B> !Freeze for Expectation<B>

impl<B> !Freeze for Expectation<B>

impl<B> !Freeze for Expectation<B>

impl<B> Freeze for ToServiceCommand<B>
where <B as Block>::Hash: Freeze, <<B as Block>::Header as Header>::Number: Freeze, <B as Block>::Header: Freeze,

impl<B> Freeze for SyncingAction<B>
where <B as Block>::Hash: Freeze, <<B as Block>::Header as Header>::Number: Freeze,

impl<B> Freeze for ImportResult<B>
where <B as Block>::Hash: Freeze, <B as Block>::Header: Freeze,

impl<B> Freeze for BlockCollection<B>

impl<B> Freeze for BlockData<B>
where <B as Block>::Hash: Freeze, <B as Block>::Header: Freeze,

impl<B> Freeze for Peer<B>
where <B as Block>::Hash: Freeze, <<B as Block>::Header as Header>::Number: Freeze,

impl<B> Freeze for SyncingService<B>

impl<B> Freeze for StateStrategy<B>

impl<B> Freeze for WarpProofRequest<B>
where <B as Block>::Hash: Freeze,

impl<B> Freeze for WarpSyncResult<B>
where <B as Block>::Header: Freeze,

impl<B> Freeze for ExtendedPeerInfo<B>
where <B as Block>::Hash: Freeze, <<B as Block>::Header as Header>::Number: Freeze,

impl<B, Client> !Freeze for SyncingEngine<B, Client>

impl<B, Client> Freeze for BlockRequestHandler<B, Client>

impl<B, Client> Freeze for StateRequestHandler<B, Client>

impl<B, Client> Freeze for ChainSync<B, Client>
where <<B as Block>::Header as Header>::Number: Freeze, <B as Block>::Hash: Freeze, <B as Block>::Header: Freeze,

impl<B, Client> Freeze for PolkadotSyncingStrategy<B, Client>
where <<B as Block>::Header as Header>::Number: Freeze, <B as Block>::Hash: Freeze, <B as Block>::Header: Freeze,

impl<B, Client> Freeze for StateSync<B, Client>
where <B as Block>::Header: Freeze,

impl<B, Client> Freeze for WarpSync<B, Client>
where <B as Block>::Hash: Freeze, <B as Block>::Header: Freeze,

impl<Block> !Freeze for Expectation<Block>

impl<Block> !Freeze for Expectation<Block>

impl<Block> !Freeze for Expectation<Block>

impl<Block> Freeze for VerificationResult<Block>
where <Block as Block>::Hash: Freeze, <Block as Block>::Header: Freeze,

impl<Block> Freeze for WarpSyncConfig<Block>
where <Block as Block>::Header: Freeze,

impl<Block> Freeze for WarpSyncPhase<Block>
where <<Block as Block>::Header as Header>::Number: Freeze,

impl<Block> Freeze for MockBlockDownloader<Block>

impl<Block> Freeze for PolkadotSyncingStrategyConfig<Block>

impl<Block> Freeze for WarpSyncProgress<Block>
where <<Block as Block>::Header as Header>::Number: Freeze,

impl<Block> Freeze for PeerInfo<Block>
where <Block as Block>::Hash: Freeze, <<Block as Block>::Header as Header>::Number: Freeze,

impl<Block> Freeze for SyncStatus<Block>
where <<Block as Block>::Header as Header>::Number: Freeze,

impl<Block, N> Freeze for BlockRelayParams<Block, N>
where <N as NetworkBackend<Block, <Block as Block>::Hash>>::RequestResponseProtocolConfig: Freeze,

impl<BlockNumber> Freeze for SyncState<BlockNumber>
where BlockNumber: Freeze,

impl<TBlock> Freeze for RequestHandler<TBlock>

impl Freeze for TestNet

impl<D, BlockImport> !Freeze for Peer<D, BlockImport>

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

impl<B, H, N, S> !Freeze for TransactionsHandler<B, H, N, S>

impl !Freeze for Key

impl !Freeze for PeerRecord

impl !Freeze for Record

impl Freeze for Code

impl Freeze for Error

impl Freeze for Keypair

impl Freeze for PublicKey

impl Freeze for SecretKey

impl Freeze for Multiaddr

impl Freeze for Multihash

impl Freeze for PeerId

impl<'a> Freeze for Protocol<'a>

impl<'a> Freeze for Iter<'a>

impl<RA, Block, Storage> !Freeze for OffchainWorkers<RA, Block, Storage>

impl<RA, Block, Storage, CE> Freeze for OffchainWorkerOptions<RA, Block, Storage, CE>
where CE: Freeze, Storage: Freeze,

impl Freeze for Metrics

impl !Freeze for Mixnet

impl<B> Freeze for Request<B>

impl<B> Freeze for System<B>

impl<Block, Client> Freeze for Chain<Block, Client>

impl<Block, Client> Freeze for Dev<Block, Client>

impl<Block, Client> Freeze for ChildState<Block, Client>

impl<Block, Client> Freeze for State<Block, Client>

impl<P, Client> Freeze for Author<P, Client>

impl<T> Freeze for Offchain<T>

impl<T> Freeze for BoundedVecDeque<T>

impl<T> Freeze for RingBuffer<T>

impl Freeze for Error

impl Freeze for Error

impl Freeze for Error

impl Freeze for Error

impl Freeze for Error

impl Freeze for Error

impl Freeze for Error

impl Freeze for NodeRole

impl Freeze for Error

impl Freeze for Health

impl<Hash> Freeze for ExtrinsicOrHash<Hash>
where Hash: Freeze,

impl<Hash> Freeze for ReadProof<Hash>
where Hash: Freeze,

impl<Hash, Number> Freeze for PeerInfo<Hash, Number>
where Hash: Freeze, Number: Freeze,

impl<Number> Freeze for SyncState<Number>
where Number: Freeze,

impl Freeze for Metrics

impl Freeze for RateLimit

impl Freeze for Server

impl<M> Freeze for Config<M>

impl<S> Freeze for Middleware<S>
where S: Freeze,

impl<S> Freeze for NodeHealthProxy<S>
where S: Freeze,

impl Freeze for Error

impl Freeze for Error

impl Freeze for Error

impl Freeze for ChainSpec

impl<BE, Block, Client> Freeze for Archive<BE, Block, Client>

impl<BE, Block, Client> Freeze for ChainHead<BE, Block, Client>

impl<Hash> Freeze for FollowEvent<Hash>
where Hash: Freeze,

impl<Hash> Freeze for TransactionEvent<Hash>
where Hash: Freeze,

impl<Hash> Freeze for BestBlockChanged<Hash>
where Hash: Freeze,

impl<Hash> Freeze for Finalized<Hash>

impl<Hash> Freeze for Initialized<Hash>

impl<Hash> Freeze for NewBlock<Hash>
where Hash: Freeze,

impl<Hash> Freeze for TransactionBlock<Hash>
where Hash: Freeze,

impl<Pool, Client> Freeze for Transaction<Pool, Client>

impl<Pool, Client> Freeze for TransactionBroadcast<Pool, Client>

impl Freeze for Error

impl<'a, 'b, HF> Freeze for RuntimeCaller<'a, 'b, HF>

impl !Freeze for Error

impl Freeze for TaskType

impl Freeze for BasePath

impl Freeze for Task

impl<'a, Block, Client, Net> Freeze for DefaultSyncingEngineConfig<'a, Block, Client, Net>
where <Block as Block>::Header: Freeze,

impl<'a, Block, Net, TxPool, IQ, Client> Freeze for BuildNetworkAdvancedParams<'a, Block, Net, TxPool, IQ, Client>
where IQ: Freeze, <Net as NetworkBackend<Block, <Block as Block>::Hash>>::NotificationProtocolConfig: Freeze, <Net as NetworkBackend<Block, <Block as Block>::Hash>>::PeerStore: Freeze,

impl<'a, Block, Net, TxPool, IQ, Client> Freeze for BuildNetworkParams<'a, Block, Net, TxPool, IQ, Client>
where IQ: Freeze, <Net as NetworkBackend<Block, <Block as Block>::Hash>>::PeerStore: Freeze, <Block as Block>::Header: Freeze, <Net as NetworkBackend<Block, <Block as Block>::Hash>>::RequestResponseProtocolConfig: Freeze,

impl<'a, TBl, TCl, TExPool, TRpc, Backend> Freeze for SpawnTasksParams<'a, TBl, TCl, TExPool, TRpc, Backend>

impl<B, E, Block, RA> !Freeze for Client<B, E, Block, RA>

impl<Block> Freeze for ClientConfig<Block>

impl<Block, B, E> Freeze for LocalCallExecutor<Block, B, E>
where E: Freeze,

impl<C, P> Freeze for TransactionPoolAdapter<C, P>

impl<Client, Backend, SelectChain, ImportQueue, TransactionPool, Other> Freeze for PartialComponents<Client, Backend, SelectChain, ImportQueue, TransactionPool, Other>
where SelectChain: Freeze, ImportQueue: Freeze, Other: Freeze,

impl<TBl, TBackend, TExec, TRtApi, TExPool> Freeze for TestNetComponents<TBl, TBackend, TExec, TRtApi, TExPool>

impl Freeze for IsPruned

impl Freeze for PinError

impl<BlockHash, Key, D> !Freeze for StateDb<BlockHash, Key, D>

impl<BlockHash, Key, D> Freeze for StateDbSync<BlockHash, Key, D>
where BlockHash: Freeze, D: Freeze,

impl<E> Freeze for Error<E>
where E: Freeze,

impl<H> Freeze for ChangeSet<H>

impl<H> Freeze for CommitSet<H>

impl !Freeze for Store

impl Freeze for Options

impl Freeze for Error

impl<Block> Freeze for Error<Block>
where <Block as Block>::Hash: Freeze,

impl<Block> Freeze for LightSyncState<Block>
where <Block as Block>::Header: Freeze, <<Block as Block>::Header as Header>::Number: Freeze,

impl<Block, Client> Freeze for SyncState<Block, Client>

impl Freeze for Metric

impl Freeze for HwBench

impl Freeze for Error

impl Freeze for SysInfo

impl Freeze for Telemetry

impl Freeze for Error

impl Freeze for Error

impl Freeze for SpanDatum

impl Freeze for Values

impl<Block, Client> Freeze for BlockExecutor<Block, Client>
where <Block as Block>::Hash: Freeze,

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

impl Freeze for Options

impl Freeze for Limit

impl<'a, Block, Client> Freeze for Builder<'a, Block, Client>

impl<B, L> Freeze for Pool<B, L>

impl<Block, Client> Freeze for TransactionPoolWrapper<Block, Client>

impl<ChainApi, Block> !Freeze for ForkAwareTxPool<ChainApi, Block>

impl<Client, Block> Freeze for FullChainApi<Client, Block>

impl<PoolApi, Block> Freeze for BasicPool<PoolApi, Block>

impl Freeze for Error

impl<B> Freeze for ChainEvent<B>
where <B as Block>::Hash: Freeze,

impl<Block> Freeze for OffchainTransactionPoolFactory<Block>

impl<Block> Freeze for RejectAllTxPool<Block>

impl<Hash, BlockHash> Freeze for TransactionStatus<Hash, BlockHash>
where BlockHash: Freeze, Hash: Freeze,

impl Freeze for SeqID

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

impl<M, R> Freeze for Hub<M, R>

impl<M, R> Freeze for Receiver<M, R>

impl<Payload> Freeze for NotificationReceiver<Payload>

impl<Payload> Freeze for NotificationSender<Payload>

impl<Payload, TK> Freeze for NotificationStream<Payload, TK>

impl<T> !Freeze for StatusSinks<T>

impl Freeze for BlsError

impl Freeze for Mode

impl Freeze for Fork

impl Freeze for ForkData

impl Freeze for PublicKey

impl Freeze for Signature

impl<const COMMITTEE_SIZE: usize> Freeze for SSZSyncAggregate<COMMITTEE_SIZE>

impl<const COMMITTEE_SIZE: usize> Freeze for SSZSyncCommittee<COMMITTEE_SIZE>

impl<const COMMITTEE_SIZE: usize> Freeze for SyncCommittee<COMMITTEE_SIZE>

impl<const COMMITTEE_SIZE: usize> Freeze for SyncCommitteePrepared<COMMITTEE_SIZE>

impl<const COMMITTEE_SIZE: usize> Freeze for CheckpointUpdate<COMMITTEE_SIZE>

impl<const COMMITTEE_SIZE: usize> Freeze for NextSyncCommitteeUpdate<COMMITTEE_SIZE>

impl<const COMMITTEE_SIZE: usize, const COMMITTEE_BITS_SIZE: usize> Freeze for SyncAggregate<COMMITTEE_SIZE, COMMITTEE_BITS_SIZE>

impl<const COMMITTEE_SIZE: usize, const COMMITTEE_BITS_SIZE: usize> Freeze for Update<COMMITTEE_SIZE, COMMITTEE_BITS_SIZE>

impl Freeze for UD60x18

impl Freeze for Channel

impl Freeze for ChannelId

impl<Balance> Freeze for PricingParameters<Balance>
where Balance: Freeze,

impl<Balance> Freeze for Rewards<Balance>
where Balance: Freeze,

impl<BitMap> Freeze for SparseBitmapImpl<BitMap>

impl<DescribeInterior> Freeze for DescribeGlobalPrefix<DescribeInterior>

impl<Index, B, CurrentIndex, Intermediate, M, QueryKind> Freeze for RingBufferMapImpl<Index, B, CurrentIndex, Intermediate, M, QueryKind>

impl<Relayer, RewardBalance, EthereumNetwork, AssetHubLocation, InboundQueueLocation, XcmSender, XcmExecutor, Call> Freeze for PayAccountOnLocation<Relayer, RewardBalance, EthereumNetwork, AssetHubLocation, InboundQueueLocation, XcmSender, XcmExecutor, Call>

impl Freeze for Bloom

impl Freeze for Header

impl Freeze for HeaderId

impl Freeze for Log

impl Freeze for FullNode

impl Freeze for ShortNode

impl Freeze for Receipt

impl !Freeze for Payload

impl !Freeze for Xcm

impl Freeze for Command

impl Freeze for Network

impl Freeze for MessageV1

impl Freeze for Message

impl<AccountId> Freeze for EthereumLocationsConverterFor<AccountId>

impl<CreateAssetCall, CreateAssetDeposit, EthereumNetwork, InboundQueueLocation, ConvertAssetId, GatewayProxyAddress, EthereumUniversalLocation, AssetHubFromEthereum, AssetHubUniversalLocation, AccountId> Freeze for MessageToXcm<CreateAssetCall, CreateAssetDeposit, EthereumNetwork, InboundQueueLocation, ConvertAssetId, GatewayProxyAddress, EthereumUniversalLocation, AssetHubFromEthereum, AssetHubUniversalLocation, AccountId>

impl<CreateAssetCall, CreateAssetDeposit, InboundQueuePalletInstance, AccountId, Balance, ConvertAssetId, EthereumUniversalLocation, GlobalAssetHubLocation> Freeze for MessageToXcm<CreateAssetCall, CreateAssetDeposit, InboundQueuePalletInstance, AccountId, Balance, ConvertAssetId, EthereumUniversalLocation, GlobalAssetHubLocation>
where <Balance as HasCompact>::Type: Sized,

impl<'a> Freeze for Leaf<'a>

impl Freeze for SendError

impl Freeze for Command

impl Freeze for Command

impl Freeze for Message

impl Freeze for Message

impl<'a, ConvertAssetId, Call> Freeze for XcmConverter<'a, ConvertAssetId, Call>

impl<Balance> Freeze for Fee<Balance>
where Balance: Freeze,

impl<PausedQuery, InnerExporter> Freeze for PausableExporter<PausedQuery, InnerExporter>

impl<T, M> Freeze for XcmFilterExporter<T, M>

impl<UniversalLocation, EthereumNetwork, OutboundQueue, AgentHashedDescription, ConvertAssetId> Freeze for EthereumBlobExporter<UniversalLocation, EthereumNetwork, OutboundQueue, AgentHashedDescription, ConvertAssetId>

impl<UniversalLocation, EthereumNetwork, OutboundQueue, ConvertAssetId, AssetHubParaId> Freeze for EthereumBlobExporter<UniversalLocation, EthereumNetwork, OutboundQueue, ConvertAssetId, AssetHubParaId>

impl Freeze for Test

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for MaxFinalizedHeadersToKeep<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl Freeze for SendError

impl Freeze for Nonce

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Token as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl Freeze for Messages

impl Freeze for Nonce

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Ticket<T>
where <T as Config>::RuntimeEvent: Sized,

impl Freeze for Messages

impl Freeze for Nonce

impl<BlockNumber> Freeze for PendingOrder<BlockNumber>
where BlockNumber: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::AccountId: Sized, <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl Freeze for Agents

impl Freeze for Channels

impl<T> Freeze for PaysFee<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::AccountId: Freeze,

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Token as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <<T as Config>::Token as Inspect<<T as Config>::AccountId>>::Balance: Freeze,

impl<T> Freeze for FeePerGasMigration<T>

impl<T> Freeze for GenesisConfig<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T, BridgeHubParaId, AssetHubParaId> Freeze for InitializeOnUpgrade<T, BridgeHubParaId, AssetHubParaId>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Error<T>

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Pallet<T>

impl<Balance, AccountId, FeeAssetLocation, EthereumNetwork, AssetTransactor, FeeProvider> Freeze for XcmExportFeeToSibling<Balance, AccountId, FeeAssetLocation, EthereumNetwork, AssetTransactor, FeeProvider>

impl<IsForeign, AssetInspect, AccountId, LocationToAccountId, L> Freeze for ForeignAssetOwner<IsForeign, AssetInspect, AccountId, LocationToAccountId, L>

impl<MatchAssetId, AssetInspect, AccountId, AssetId, L> Freeze for LocalAssetOwner<MatchAssetId, AssetInspect, AccountId, AssetId, L>

impl Freeze for Origin

impl<F> Freeze for EnsureXcm<F>

impl<T> Freeze for Call<T>

impl<T> Freeze for Pallet<T>

impl Freeze for Log

impl Freeze for Proof

impl Freeze for Cli

impl<C, P> Freeze for FullDeps<C, P>

impl Freeze for Version

impl Freeze for Runtime

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl Freeze for ApiError

impl<'a, Block> Freeze for CallApiAtParams<'a, Block>
where <Block as Block>::Hash: Freeze,

impl<'a, T> Freeze for ApiRef<'a, T>
where T: Freeze,

impl Freeze for Pair

impl Freeze for Public

impl Freeze for Signature

impl Freeze for Pair

impl Freeze for Public

impl Freeze for Signature

impl Freeze for Pair

impl Freeze for Public

impl Freeze for Signature

impl Freeze for Pair

impl Freeze for Public

impl Freeze for Signature

impl Freeze for Pair

impl Freeze for Public

impl Freeze for Signature

impl Freeze for Pair

impl Freeze for Public

impl Freeze for Signature

impl Freeze for Rounding

impl Freeze for BigUint

impl Freeze for FixedI128

impl Freeze for FixedI64

impl Freeze for FixedU128

impl Freeze for FixedU64

impl Freeze for PerU16

impl Freeze for Perbill

impl Freeze for Percent

impl Freeze for Permill

impl Freeze for Error

impl<Block> !Freeze for HeaderMetadataCache<Block>

impl<Block> Freeze for CachedHeaderMetadata<Block>
where <Block as Block>::Hash: Freeze, <<Block as Block>::Header as Header>::Number: Freeze,

impl<Block> Freeze for HashAndNumber<Block>
where <<Block as Block>::Header as Header>::Number: Freeze, <Block as Block>::Hash: Freeze,

impl<Block> Freeze for Info<Block>
where <Block as Block>::Hash: Freeze, <<Block as Block>::Header as Header>::Number: Freeze,

impl<Block> Freeze for TreeRoute<Block>

impl<N> Freeze for BlockGap<N>
where N: Freeze,

impl Freeze for Error

impl Freeze for NoNetwork

impl<Block, Proof> Freeze for Proposal<Block, Proof>
where Block: Freeze, Proof: Freeze, <Block as Block>::Hash: Freeze,

impl<AuthorityId> Freeze for ConsensusLog<AuthorityId>

impl Freeze for PreDigest

impl Freeze for Epoch

impl Freeze for Pair

impl Freeze for Public

impl Freeze for Signature

impl Freeze for Pair

impl Freeze for Public

impl Freeze for Signature

impl Freeze for Pair

impl Freeze for Public

impl Freeze for Signature

impl Freeze for Payload

impl<AuthorityId> Freeze for ConsensusLog<AuthorityId>

impl<AuthorityId> Freeze for Keyring<AuthorityId>

impl<AuthorityId> Freeze for ValidatorSet<AuthorityId>

impl<AuthorityId> Freeze for KeyringIter<AuthorityId>

impl<AuthoritySetCommitment> Freeze for BeefyAuthoritySet<AuthoritySetCommitment>
where AuthoritySetCommitment: Freeze,

impl<B, R> Freeze for MmrRootProvider<B, R>

impl<BlockNumber, Hash, MerkleRoot, ExtraData> Freeze for MmrLeaf<BlockNumber, Hash, MerkleRoot, ExtraData>
where ExtraData: Freeze, BlockNumber: Freeze, Hash: Freeze, MerkleRoot: Freeze,

impl<Header, Id, AncestryProof> Freeze for ForkVotingProof<Header, Id, AncestryProof>
where AncestryProof: Freeze, Header: Freeze, Id: Freeze, <Id as RuntimeAppPublic>::Signature: Freeze, <Header as Header>::Number: Freeze,

impl<N, S> Freeze for VersionedFinalityProof<N, S>
where N: Freeze,

impl<Number, Id> Freeze for FutureBlockVotingProof<Number, Id>
where Id: Freeze, <Id as RuntimeAppPublic>::Signature: Freeze, Number: Freeze,

impl<Number, Id, Signature> Freeze for DoubleVotingProof<Number, Id, Signature>
where Id: Freeze, Signature: Freeze, Number: Freeze,

impl<Number, Id, Signature> Freeze for VoteMessage<Number, Id, Signature>
where Id: Freeze, Signature: Freeze, Number: Freeze,

impl<TAuthorityId, TSignature> Freeze for KnownSignature<TAuthorityId, TSignature>
where TAuthorityId: Freeze, TSignature: Freeze,

impl<TBlockNumber> Freeze for Commitment<TBlockNumber>
where TBlockNumber: Freeze,

impl<TBlockNumber, TSignature> Freeze for SignedCommitment<TBlockNumber, TSignature>
where TBlockNumber: Freeze,

impl<TBlockNumber, TSignatureAccumulator> Freeze for SignedCommitmentWitness<TBlockNumber, TSignatureAccumulator>
where TSignatureAccumulator: Freeze, TBlockNumber: Freeze,

impl<H, N> Freeze for Equivocation<H, N>
where H: Freeze, N: Freeze,

impl<H, N> Freeze for EquivocationProof<H, N>
where H: Freeze, N: Freeze,

impl<Header> Freeze for GrandpaJustification<Header>
where <Header as Header>::Hash: Freeze, <Header as Header>::Number: Freeze,

impl<N> Freeze for ConsensusLog<N>
where N: Freeze,

impl<N> Freeze for ScheduledChange<N>
where N: Freeze,

impl Freeze for SlotClaim

impl Freeze for Epoch

impl Freeze for Slot

impl<Header, Id> Freeze for EquivocationProof<Header, Id>
where Id: Freeze, Header: Freeze,

impl Freeze for Error

impl Freeze for Void

impl Freeze for HttpError

impl Freeze for Pair

impl Freeze for VrfInput

impl Freeze for KeyTypeId

impl Freeze for SecretUri

impl Freeze for PublicTag

impl Freeze for Pair

impl Freeze for Pair

impl Freeze for Duration

impl Freeze for Timestamp

impl Freeze for PoolState

impl Freeze for Pair

impl Freeze for VrfProof

impl Freeze for Bytes

impl<'a> Freeze for AddressUri<'a>

impl<'a> Freeze for HexDisplay<'a>

impl<'a> Freeze for RuntimeCode<'a>

impl<'a> Freeze for WrappedRuntimeCode<'a>

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

impl<LeftPair, RightPair, const PUBLIC_KEY_LEN: usize, const SIGNATURE_LEN: usize, SubTag> Freeze for Pair<LeftPair, RightPair, PUBLIC_KEY_LEN, SIGNATURE_LEN, SubTag>
where LeftPair: Freeze, RightPair: Freeze,

impl<Storage> Freeze for OffchainDb<Storage>
where Storage: Freeze,

impl<T> Freeze for Pair<T>
where <T as EngineBLS>::SignatureGroup: Freeze, <T as EngineBLS>::PublicKeyGroup: Freeze, <T as EngineBLS>::Scalar: Freeze,

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

impl<const N: usize, T> Freeze for CryptoBytes<N, T>

impl<const R: usize> Freeze for RingContext<R>

impl Freeze for HostHooks

impl Freeze for HostHooks

impl Freeze for HostHooks

impl Freeze for HostHooks

impl Freeze for HostHooks

impl !Freeze for MemDb

impl<H> Freeze for Change<H>
where H: Freeze,

impl<H> Freeze for Transaction<H>

impl Freeze for Error

impl Freeze for Error

impl<E> Freeze for MakeFatalError<E>
where E: Freeze,

impl Freeze for Keyring

impl Freeze for Keyring

impl Freeze for Keyring

impl Freeze for Error

impl Freeze for Error

impl<T> Freeze for ItemDeprecationInfoIR<T>
where <T as Form>::String: Freeze,

impl<T> Freeze for StorageEntryTypeIR<T>
where <T as Form>::Type: Freeze,

impl<T> Freeze for VariantDeprecationInfoIR<T>
where <T as Form>::String: Freeze,

impl<T> Freeze for ExtrinsicMetadataIR<T>
where <T as Form>::Type: Freeze,

impl<T> Freeze for MetadataIR<T>
where <T as Form>::Type: Freeze,

impl<T> Freeze for OuterEnumsIR<T>
where <T as Form>::Type: Freeze,

impl<T> Freeze for PalletAssociatedTypeMetadataIR<T>
where <T as Form>::String: Freeze, <T as Form>::Type: Freeze,

impl<T> Freeze for PalletCallMetadataIR<T>
where <T as Form>::Type: Freeze,

impl<T> Freeze for PalletConstantMetadataIR<T>
where <T as Form>::String: Freeze, <T as Form>::Type: Freeze,

impl<T> Freeze for PalletErrorMetadataIR<T>
where <T as Form>::Type: Freeze,

impl<T> Freeze for PalletEventMetadataIR<T>
where <T as Form>::Type: Freeze,

impl<T> Freeze for PalletMetadataIR<T>
where <T as Form>::String: Freeze, <T as Form>::Type: Freeze,

impl<T> Freeze for PalletStorageMetadataIR<T>
where <T as Form>::String: Freeze,

impl<T> Freeze for PalletViewFunctionMetadataIR<T>
where <T as Form>::String: Freeze, <T as Form>::Type: Freeze,

impl<T> Freeze for PalletViewFunctionParamMetadataIR<T>
where <T as Form>::String: Freeze, <T as Form>::Type: Freeze,

impl<T> Freeze for RuntimeApiMetadataIR<T>
where <T as Form>::String: Freeze,

impl<T> Freeze for RuntimeApiMethodMetadataIR<T>
where <T as Form>::String: Freeze, <T as Form>::Type: Freeze,

impl<T> Freeze for RuntimeApiMethodParamMetadataIR<T>
where <T as Form>::String: Freeze, <T as Form>::Type: Freeze,

impl<T> Freeze for StorageEntryMetadataIR<T>
where <T as Form>::String: Freeze, <T as Form>::Type: Freeze,

impl<T> Freeze for TransactionExtensionMetadataIR<T>
where <T as Form>::String: Freeze, <T as Form>::Type: Freeze,

impl Freeze for Mixnode

impl Freeze for Error

impl<H, L> Freeze for DataOrHash<H, L>
where L: Freeze, <H as Hash>::Output: Freeze,

impl<H, T> Freeze for Compact<H, T>
where T: Freeze,

impl<Hash> Freeze for AncestryProof<Hash>

impl<Hash> Freeze for LeafProof<Hash>

impl Freeze for Error

impl<AccountId> Freeze for Candidate<AccountId>
where AccountId: Freeze,

impl<AccountId> Freeze for Edge<AccountId>
where AccountId: Freeze,

impl<AccountId> Freeze for StakedAssignment<AccountId>
where AccountId: Freeze,

impl<AccountId> Freeze for Support<AccountId>

impl<AccountId> Freeze for Voter<AccountId>
where AccountId: Freeze,

impl<AccountId, P> Freeze for Assignment<AccountId, P>
where AccountId: Freeze,

impl<AccountId, P> Freeze for ElectionResult<AccountId, P>

impl Freeze for Data

impl Freeze for Event

impl Freeze for Span

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

impl Freeze for Era

impl Freeze for Error

impl Freeze for Method

impl Freeze for TrieError

impl Freeze for Digest

impl Freeze for Headers

impl Freeze for Response

impl Freeze for Time

impl Freeze for BadOrigin

impl Freeze for Identity

impl Freeze for Keccak256

impl Freeze for TakeFirst

impl<'a> Freeze for DigestItemRef<'a>

impl<'a> Freeze for OpaqueDigestItemId<'a>

impl<'a> Freeze for PiecewiseLinear<'a>

impl<'a> Freeze for HeadersIterator<'a>

impl<'a> Freeze for StorageValueRef<'a>

impl<'a> Freeze for TrailingZeroInput<'a>

impl<'a, 'b, L> Freeze for StorageLockGuard<'a, 'b, L>

impl<'a, L> Freeze for StorageLock<'a, L>
where L: Freeze,

impl<'a, T> Freeze for Request<'a, T>
where T: Freeze,

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

impl<AccountId, AccountIndex> Freeze for MultiAddress<AccountId, AccountIndex>
where AccountId: Freeze, AccountIndex: Freeze,

impl<AccountId, AccountIndex> Freeze for AccountIdLookup<AccountId, AccountIndex>

impl<AccountId, Call, Extension> Freeze for CheckedExtrinsic<AccountId, Call, Extension>
where Call: Freeze, AccountId: Freeze, Extension: Freeze,

impl<AccountId, Extension> Freeze for ExtrinsicFormat<AccountId, Extension>
where AccountId: Freeze, Extension: Freeze,

impl<Address, Call, Signature, Extension> Freeze for UncheckedExtrinsic<Address, Call, Signature, Extension>
where Call: Freeze, Address: Freeze, Signature: Freeze, Extension: Freeze,

impl<Address, Signature, Extension> Freeze for Preamble<Address, Signature, Extension>
where Address: Freeze, Signature: Freeze, Extension: Freeze,

impl<B> Freeze for BlockAndTime<B>

impl<Base, Explicit, Implicit> Freeze for ImplicationParts<Base, Explicit, Implicit>
where Base: Freeze, Explicit: Freeze, Implicit: Freeze,

impl<Block> Freeze for BlockId<Block>
where <Block as Block>::Hash: Freeze, <<Block as Block>::Header as Header>::Number: Freeze,

impl<Block> Freeze for SignedBlock<Block>
where Block: Freeze,

impl<Call, Extension> Freeze for SignedPayload<Call, Extension>
where Call: Freeze, Extension: Freeze, <Extension as TransactionExtension<Call>>::Implicit: Freeze,

impl<Hashing, Key, Value> Freeze for BasicProvingTrie<Hashing, Key, Value>
where <Hashing as Hasher>::Out: Freeze,

impl<Hashing, Key, Value> Freeze for BasicProvingTrie<Hashing, Key, Value>
where <Hashing as Hasher>::Out: Freeze,

impl<Header, Extrinsic> Freeze for Block<Header, Extrinsic>
where Header: Freeze,

impl<Info> Freeze for DispatchErrorWithPostInfo<Info>
where Info: Freeze,

impl<Inner> Freeze for FakeDispatchable<Inner>
where Inner: Freeze,

impl<L, M> Freeze for MorphWithUpperLimit<L, M>

impl<N> Freeze for CheckedReduceBy<N>

impl<N> Freeze for ReduceBy<N>

impl<Number, Hash> Freeze for Header<Number, Hash>
where <Hash as Hash>::Output: Freeze, Number: Freeze,

impl<R> Freeze for TransactionOutcome<R>
where R: Freeze,

impl<SE> Freeze for AsTransactionExtension<SE>
where SE: Freeze,

impl<T> Freeze for ConvertToValue<T>

impl<T> Freeze for IdentityLookup<T>

impl<T> Freeze for MorphInto<T>

impl<T> Freeze for TryMorphInto<T>

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

impl<T, D> Freeze for TypeWithDefault<T, D>
where T: Freeze,

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

impl<V> Freeze for Replace<V>

impl<V> Freeze for ReplaceWithDefault<V>

impl<Xt> Freeze for Block<Xt>

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

impl<T, U> Freeze for PassAs<T, U>

impl<T, U> Freeze for ReturnAs<T, U>

impl<T, const N: usize> Freeze for AllocateAndReturnPointer<T, N>

impl<T, const N: usize> Freeze for PassPointerAndRead<T, N>

impl<T, const N: usize> Freeze for PassPointerAndReadCopy<T, N>

impl<T, const N: usize> Freeze for PassPointerAndWrite<T, N>

impl Freeze for Opaque

impl<AccountId> Freeze for StakerStatus<AccountId>

impl<AccountId> Freeze for StakingAccount<AccountId>
where AccountId: Freeze,

impl<AccountId, Balance> Freeze for Exposure<AccountId, Balance>
where Balance: Freeze,

impl<AccountId, Balance> Freeze for ExposurePage<AccountId, Balance>
where Balance: Freeze,

impl<AccountId, Balance> Freeze for IndividualExposure<AccountId, Balance>
where AccountId: Freeze, Balance: Freeze,

impl<Balance> Freeze for PagedExposureMetadata<Balance>
where Balance: Freeze,

impl<Balance> Freeze for Stake<Balance>
where Balance: Freeze,

impl<Reporter, Offender> Freeze for OffenceDetails<Reporter, Offender>
where Offender: Freeze,

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

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

impl Freeze for UsageInfo

impl Freeze for UsageUnit

impl<'a> Freeze for IterArgs<'a>

impl<'a, B, H> Freeze for BackendRuntimeCode<'a, B, H>

impl<'a, B, H, Exec> !Freeze for StateMachine<'a, B, H, Exec>

impl<'a, H, B> Freeze for Ext<'a, H, B>

impl<'a, H, B> Freeze for ReadOnlyExternalities<'a, H, B>

impl<'a, H, I> Freeze for KeysIter<'a, H, I>
where I: Freeze,

impl<'a, H, I> Freeze for PairsIter<'a, H, I>
where I: Freeze,

impl<H> !Freeze for OverlayedChanges<H>

impl<H> !Freeze for TestExternalities<H>

impl<H> Freeze for StorageChanges<H>
where <H as Hasher>::Out: Freeze,

impl<S, H, C = LocalTrieCache<H>, R = Recorder<H>> !Freeze for TrieBackend<S, H, C, R>

impl<S, H, C, R> Freeze for TrieBackendBuilder<S, H, C, R>
where S: Freeze, <H as Hasher>::Out: Freeze, R: Freeze, C: Freeze,

impl Freeze for Error

impl Freeze for Field

impl Freeze for Proof

impl Freeze for Statement

impl Freeze for ChildInfo

impl Freeze for ChildType

impl Freeze for Storage

impl<Hash> Freeze for StorageChangeSet<Hash>
where Hash: Freeze,

impl Freeze for Extrinsic

impl Freeze for Timestamp

impl Freeze for WasmLevel

impl Freeze for WasmValue

impl Freeze for Error

impl Freeze for CacheSize

impl<'a, DB, H> Freeze for KeySpacedDB<'a, DB, H>
where DB: ?Sized,

impl<'a, DB, H> Freeze for KeySpacedDBMut<'a, DB, H>
where DB: ?Sized,

impl<'a, H> Freeze for TrieCache<'a, H>
where <H as Hasher>::Out: Freeze,

impl<'a, H> Freeze for TrieRecorder<'a, H>
where <H as Hasher>::Out: Freeze,

impl<H> !Freeze for LocalTrieCache<H>

impl<H> Freeze for Error<H>

impl<H> Freeze for SharedTrieCache<H>

impl<H> Freeze for Recorder<H>

impl<H> Freeze for LayoutV0<H>

impl<H> Freeze for LayoutV1<H>

impl<H> Freeze for NodeCodec<H>

impl<H, CodecError> Freeze for Error<H, CodecError>
where H: Freeze,

impl Freeze for Error

impl Freeze for Value

impl Freeze for ValueType

impl Freeze for Signature

impl<Base, Overlay> Freeze for ExtendedHostFunctions<Base, Overlay>

impl<T> Freeze for Pointer<T>

impl Freeze for Weight

impl<Balance> Freeze for FeePolynomial<Balance>
where Balance: Freeze,

impl<Balance> Freeze for WeightToFeeCoefficient<Balance>
where Balance: Freeze,

impl<T> Freeze for IdentityFee<T>

impl<T, M> Freeze for ConstantMultiplier<T, M>

impl<const F: u32, T> Freeze for FixedFee<F, T>

impl Freeze for CreateCmd

impl Freeze for VerifyCmd

impl Freeze for Cli

impl Freeze for Error

impl<Hash, Number> Freeze for BlockAddress<Hash, Number>
where Hash: Freeze, Number: Freeze,

impl<Hash, Number> Freeze for ExtrinsicAddress<Hash, Number>
where Hash: Freeze, Number: Freeze,

impl<TBlock, TPrinter> Freeze for Inspector<TBlock, TPrinter>
where TPrinter: Freeze,

impl<T> Freeze for Call<T>

impl<T> Freeze for GenesisConfig<T>

impl<T> Freeze for Pallet<T>

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

impl Freeze for AssetId

impl Freeze for BodyId

impl Freeze for BodyPart

impl Freeze for Error

impl Freeze for Junction

impl Freeze for Junctions

impl Freeze for NetworkId

impl Freeze for Outcome

impl Freeze for Response

impl Freeze for SendError

impl Freeze for Junction

impl Freeze for Junctions

impl Freeze for NetworkId

impl Freeze for Outcome

impl Freeze for Response

impl Freeze for WildAsset

impl Freeze for Error

impl Freeze for Hint

impl Freeze for Junction

impl Freeze for Junctions

impl Freeze for NetworkId

impl Freeze for Outcome

impl Freeze for Response

impl Freeze for WildAsset

impl Freeze for AlwaysV3

impl Freeze for AlwaysV4

impl Freeze for AlwaysV5

impl Freeze for Ancestor

impl Freeze for Parent

impl Freeze for Ancestor

impl Freeze for Asset

impl Freeze for AssetId

impl Freeze for Assets

impl Freeze for Location

impl Freeze for Parent

impl Freeze for Ancestor

impl Freeze for Asset

impl Freeze for AssetId

impl Freeze for Assets

impl Freeze for Location

impl Freeze for Parent

impl<Call> Freeze for Instruction<Call>
where Call: Freeze,

impl<Call> Freeze for Instruction<Call>
where Call: Freeze,

impl<Call> Freeze for Instruction<Call>
where Call: Freeze,

impl<Call> Freeze for Xcm<Call>

impl<Call> Freeze for Xcm<Call>

impl<Call> Freeze for Xcm<Call>

impl<Call, S> Freeze for XcmBuilder<Call, S>

impl<Call, S> Freeze for XcmBuilder<Call, S>

impl<Call, S> Freeze for XcmBuilder<Call, S>

impl<Interior> Freeze for AncestorThen<Interior>
where Interior: Freeze,

impl<Interior> Freeze for AncestorThen<Interior>
where Interior: Freeze,

impl<Interior> Freeze for AncestorThen<Interior>
where Interior: Freeze,

impl<RuntimeCall> Freeze for VersionedXcm<RuntimeCall>

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

impl Freeze for AllAssets

impl<'a, Call> Freeze for Matcher<'a, Call>

impl<AccountId> Freeze for ParentIsPreset<AccountId>

impl<AccountId, Describe> Freeze for HashedDescription<AccountId, Describe>

impl<AssetConversion, Fungibles, Matcher, AccountId> Freeze for SingleAssetExchangeAdapter<AssetConversion, Fungibles, Matcher, AccountId>

impl<AssetId, Balance, ConvertAssetId, ConvertOther> Freeze for ConvertedConcreteId<AssetId, Balance, ConvertAssetId, ConvertOther>

impl<AssetId, Balance, MatchAssetId, ConvertAssetId, ConvertOther> Freeze for MatchedConvertedConcreteId<AssetId, Balance, MatchAssetId, ConvertAssetId, ConvertOther>

impl<AssetTransactor, ReceiverAccount> Freeze for SendXcmFeeToAccount<AssetTransactor, ReceiverAccount>

impl<Assets, Matcher, AccountIdConverter, AccountId> Freeze for FungiblesTransferAdapter<Assets, Matcher, AccountIdConverter, AccountId>

impl<Assets, Matcher, AccountIdConverter, AccountId> Freeze for NonFungiblesTransferAdapter<Assets, Matcher, AccountIdConverter, AccountId>

impl<Assets, Matcher, AccountIdConverter, AccountId, CheckAsset, CheckingAccount> Freeze for FungiblesAdapter<Assets, Matcher, AccountIdConverter, AccountId, CheckAsset, CheckingAccount>

impl<Assets, Matcher, AccountIdConverter, AccountId, CheckAsset, CheckingAccount> Freeze for FungiblesMutateAdapter<Assets, Matcher, AccountIdConverter, AccountId, CheckAsset, CheckingAccount>

impl<Assets, Matcher, AccountIdConverter, AccountId, CheckAsset, CheckingAccount> Freeze for NonFungiblesAdapter<Assets, Matcher, AccountIdConverter, AccountId, CheckAsset, CheckingAccount>

impl<Assets, Matcher, AccountIdConverter, AccountId, CheckAsset, CheckingAccount> Freeze for NonFungiblesMutateAdapter<Assets, Matcher, AccountIdConverter, AccountId, CheckAsset, CheckingAccount>

impl<Bridge, BridgedNetwork, DestinationVersion, Price> Freeze for HaulBlobExporter<Bridge, BridgedNetwork, DestinationVersion, Price>

impl<Bridges, Router, UniversalLocation> Freeze for SovereignPaidRemoteExporter<Bridges, Router, UniversalLocation>

impl<Bridges, Router, UniversalLocation> Freeze for UnpaidRemoteExporter<Bridges, Router, UniversalLocation>

impl<Count> Freeze for IsParentsOnly<Count>

impl<Currency, Matcher, AccountIdConverter, AccountId, CheckedAccount> Freeze for CurrencyAdapter<Currency, Matcher, AccountIdConverter, AccountId, CheckedAccount>

impl<Deny, Allow> Freeze for DenyThenTry<Deny, Allow>

impl<DescribeInterior> Freeze for DescribeFamily<DescribeInterior>

impl<Exporter, UniversalLocation> Freeze for LocalExporter<Exporter, UniversalLocation>

impl<Exporter, UniversalLocation> Freeze for UnpaidLocalExporter<Exporter, UniversalLocation>

impl<FixedLocationValue> Freeze for FixedLocation<FixedLocationValue>

impl<Fungible, Matcher, AccountIdConverter, AccountId> Freeze for FungibleTransferAdapter<Fungible, Matcher, AccountIdConverter, AccountId>

impl<Fungible, Matcher, AccountIdConverter, AccountId, CheckingAccount> Freeze for FungibleAdapter<Fungible, Matcher, AccountIdConverter, AccountId, CheckingAccount>

impl<Fungible, Matcher, AccountIdConverter, AccountId, CheckingAccount> Freeze for FungibleMutateAdapter<Fungible, Matcher, AccountIdConverter, AccountId, CheckingAccount>

impl<Inner> Freeze for DenyRecursively<Inner>

impl<Inner> Freeze for EnsureDecodableXcm<Inner>

impl<Inner> Freeze for WithUniqueTopic<Inner>

impl<Inner, SuspensionChecker> Freeze for RespectSuspension<Inner, SuspensionChecker>

impl<Inner, TopicSource> Freeze for WithTopicSource<Inner, TopicSource>

impl<InnerBarrier> Freeze for TrailingSetTopicAsId<InnerBarrier>

impl<InnerBarrier, LocalUniversal, MaxPrefixes> Freeze for WithComputedOrigin<InnerBarrier, LocalUniversal, MaxPrefixes>

impl<Interior, Router, Querier, Timeout, Beneficiary, AssetKind, AssetKindToLocatableAsset, BeneficiaryRefToLocation> Freeze for PayOverXcm<Interior, Router, Querier, Timeout, Beneficiary, AssetKind, AssetKindToLocatableAsset, BeneficiaryRefToLocation>

impl<L, R> Freeze for DualMint<L, R>

impl<LocationConverter, RuntimeOrigin> Freeze for SovereignSignedViaLocation<LocationConverter, RuntimeOrigin>

impl<LocationFilter, AssetFilters> Freeze for LocationWithAssetFilters<LocationFilter, AssetFilters>

impl<MessageOrigin, XcmExecutor, Call> Freeze for ProcessXcmMessage<MessageOrigin, XcmExecutor, Call>

impl<Network, AccountId> Freeze for Account32Hash<Network, AccountId>

impl<Network, AccountId> Freeze for AccountId32Aliases<Network, AccountId>

impl<Network, AccountId> Freeze for AccountKey20Aliases<Network, AccountId>

impl<Network, AccountId> Freeze for AliasesIntoAccountId32<Network, AccountId>

impl<Network, RuntimeOrigin> Freeze for SignedAccountId32AsNative<Network, RuntimeOrigin>

impl<Network, RuntimeOrigin> Freeze for SignedAccountKey20AsNative<Network, RuntimeOrigin>

impl<NonFungible, Matcher, AccountIdConverter, AccountId> Freeze for NonFungibleTransferAdapter<NonFungible, Matcher, AccountIdConverter, AccountId>

impl<NonFungible, Matcher, AccountIdConverter, AccountId, CheckingAccount> Freeze for NonFungibleAdapter<NonFungible, Matcher, AccountIdConverter, AccountId, CheckingAccount>

impl<NonFungible, Matcher, AccountIdConverter, AccountId, CheckingAccount> Freeze for NonFungibleMutateAdapter<NonFungible, Matcher, AccountIdConverter, AccountId, CheckingAccount>

impl<Origin, Filter> Freeze for AliasOriginRootUsingFilter<Origin, Filter>

impl<ParaId> Freeze for IsChildSystemParachain<ParaId>

impl<ParaId, AccountId> Freeze for ChildParachainConvertsVia<ParaId, AccountId>

impl<ParaId, AccountId> Freeze for SiblingParachainConvertsVia<ParaId, AccountId>

impl<ParaId, RuntimeOrigin> Freeze for ChildSystemParachainAsSuperuser<ParaId, RuntimeOrigin>

impl<ParaId, RuntimeOrigin> Freeze for SiblingSystemParachainAsSuperuser<ParaId, RuntimeOrigin>

impl<ParaId, SelfParaId> Freeze for IsSiblingSystemParachain<ParaId, SelfParaId>

impl<ParachainOrigin, RuntimeOrigin> Freeze for ChildParachainAsNative<ParachainOrigin, RuntimeOrigin>

impl<ParachainOrigin, RuntimeOrigin> Freeze for SiblingParachainAsNative<ParachainOrigin, RuntimeOrigin>

impl<Prefix> Freeze for AliasForeignAccountId32<Prefix>

impl<Prefix, AssetId, ConvertAssetId, L> Freeze for AsPrefixedGeneralIndex<Prefix, AssetId, ConvertAssetId, L>

impl<RelayOrigin, RuntimeOrigin> Freeze for RelayChainAsNative<RelayOrigin, RuntimeOrigin>

impl<ResponseHandler> Freeze for AllowKnownQueryResponses<ResponseHandler>

impl<Router, OurPlace, OurPlaceBridgeInstance> Freeze for BridgeBlobDispatcher<Router, OurPlace, OurPlaceBridgeInstance>

impl<RuntimeOrigin> Freeze for ParentAsSuperuser<RuntimeOrigin>

impl<RuntimeOrigin, AccountId, Network> Freeze for SignedToAccountId32<RuntimeOrigin, AccountId, Network>

impl<RuntimeOrigin, COrigin, Body> Freeze for BackingToPlurality<RuntimeOrigin, COrigin, Body>

impl<RuntimeOrigin, Conversion> Freeze for EnsureXcmOrigin<RuntimeOrigin, Conversion>

impl<RuntimeOrigin, EnsureBodyOrigin, Body> Freeze for OriginToPluralityVoice<RuntimeOrigin, EnsureBodyOrigin, Body>

impl<T> Freeze for Case<T>

impl<T> Freeze for IsConcrete<T>

impl<T> Freeze for LocalMint<T>

impl<T> Freeze for NetworkExportTable<T>

impl<T> Freeze for NonLocalMint<T>

impl<T, Aliasers> Freeze for AllowExplicitUnpaidExecutionFrom<T, Aliasers>

impl<T, C, M> Freeze for FixedWeightBounds<T, C, M>

impl<T, L> Freeze for StartsWith<T, L>

impl<T, R> Freeze for FixedRateOfFungible<T, R>

impl<Target> Freeze for WithLatestLocationConverter<Target>

impl<TreasuryAccount, AccountId> Freeze for LocalTreasuryVoiceConvertsVia<TreasuryAccount, AccountId>

impl<UniversalLocation, AccountId> Freeze for ExternalConsensusLocationsConverterFor<UniversalLocation, AccountId>

impl<UniversalLocation, AccountId> Freeze for GlobalConsensusConvertsFor<UniversalLocation, AccountId>

impl<UniversalLocation, AccountId> Freeze for GlobalConsensusParachainConvertsFor<UniversalLocation, AccountId>

impl<W, C, M> Freeze for WeightInfoBounds<W, C, M>

impl<WaivedLocations, HandleFee> Freeze for XcmFeeManagerFromComponents<WaivedLocations, HandleFee>

impl<WeightToFee, AssetIdValue, AccountId, Fungible, OnUnbalanced> Freeze for UsingComponents<WeightToFee, AssetIdValue, AccountId, Fungible, OnUnbalanced>
where <Fungible as Inspect<AccountId>>::Balance: Freeze,

impl<WhitelistedSuperuserLocations, RuntimeOrigin> Freeze for LocationAsSuperuser<WhitelistedSuperuserLocations, RuntimeOrigin>

impl Freeze for Error

impl Freeze for Error

impl Freeze for FeeReason

impl Freeze for LockError

impl Freeze for FeesMode

impl<BlockNumber> Freeze for QueryResponseStatus<BlockNumber>
where BlockNumber: Freeze,

impl<Call> Freeze for WeighedMessage<Call>

impl<Config> Freeze for XcmExecutor<Config>
where <Config as Config>::Trader: Freeze,

impl<Filter> Freeze for WithOriginFilter<Filter>

impl Freeze for Subkey

impl Freeze for Error

impl Freeze for NodeInfo

impl<V> Freeze for StorageQuery<V>

impl Freeze for Error

impl<P, C, B> Freeze for System<P, C, B>

impl Freeze for Error

impl<T, S> Freeze for SourcedMetric<T, S>
where S: Freeze,

impl Freeze for HexLaneId

impl<'a, Source, Target, Bridge> Freeze for FullBridge<'a, Source, Target, Bridge>

impl<AccountId> Freeze for TaggedAccount<AccountId>
where AccountId: Freeze,

impl<C> Freeze for Grandpa<C>

impl<Chain> Freeze for BridgeEndCommonParams<Chain>
where <Chain as ChainWithTransactions>::AccountKeyPair: Freeze, <Chain as Chain>::Hash: Freeze,

impl<Hash, HeaderNumber> Freeze for Error<Hash, HeaderNumber>
where HeaderNumber: Freeze, Hash: Freeze,

impl<L2R, R2L> Freeze for ParachainToParachainBridge<L2R, R2L>
where <R2L as CliBridgeBase>::Source: Sized, <L2R as CliBridgeBase>::Source: Sized, <<R2L as CliBridgeBase>::Target as ChainWithTransactions>::AccountKeyPair: Freeze, <<L2R as CliBridgeBase>::Target as ChainWithTransactions>::AccountKeyPair: Freeze, <<R2L as CliBridgeBase>::Target as Chain>::Hash: Freeze, <<L2R as CliBridgeBase>::Target as Chain>::Hash: Freeze,

impl<L2R, R2L> Freeze for RelayToParachainBridge<L2R, R2L>
where <R2L as CliBridgeBase>::Source: Sized, <<R2L as CliBridgeBase>::Target as ChainWithTransactions>::AccountKeyPair: Freeze, <<L2R as CliBridgeBase>::Target as ChainWithTransactions>::AccountKeyPair: Freeze, <<R2L as CliBridgeBase>::Target as Chain>::Hash: Freeze, <<L2R as CliBridgeBase>::Target as Chain>::Hash: Freeze,

impl<L2R, R2L> Freeze for RelayToRelayBridge<L2R, R2L>
where <<R2L as CliBridgeBase>::Target as ChainWithTransactions>::AccountKeyPair: Freeze, <<L2R as CliBridgeBase>::Target as ChainWithTransactions>::AccountKeyPair: Freeze, <<R2L as CliBridgeBase>::Target as Chain>::Hash: Freeze, <<L2R as CliBridgeBase>::Target as Chain>::Hash: Freeze,

impl<Left, Right> Freeze for Full2WayBridgeCommonParams<Left, Right>
where <Left as ChainWithTransactions>::AccountKeyPair: Freeze, <Right as ChainWithTransactions>::AccountKeyPair: Freeze, <Left as Chain>::Hash: Freeze, <Right as Chain>::Hash: Freeze,

impl<P> Freeze for MessageLaneAdapter<P>

impl<P, SourceClnt> Freeze for SubstrateFinalitySource<P, SourceClnt>
where SourceClnt: Freeze,

impl<P, SourceClnt, TargetClnt> Freeze for SubstrateMessagesSource<P, SourceClnt, TargetClnt>
where SourceClnt: Freeze, TargetClnt: Freeze, <P as SubstrateMessageLane>::LaneId: Freeze, <<P as SubstrateMessageLane>::SourceChain as ChainWithTransactions>::AccountKeyPair: Freeze,

impl<P, SourceClnt, TargetClnt> Freeze for MessagesRelayParams<P, SourceClnt, TargetClnt>
where SourceClnt: Freeze, TargetClnt: Freeze, <P as SubstrateMessageLane>::LaneId: Freeze, <<P as SubstrateMessageLane>::SourceChain as ChainWithTransactions>::AccountKeyPair: Freeze, <<P as SubstrateMessageLane>::TargetChain as ChainWithTransactions>::AccountKeyPair: Freeze,

impl<P, SourceClnt, TargetClnt> Freeze for SubstrateMessagesTarget<P, SourceClnt, TargetClnt>
where TargetClnt: Freeze, SourceClnt: Freeze, <P as SubstrateMessageLane>::LaneId: Freeze, <<P as SubstrateMessageLane>::SourceChain as Chain>::AccountId: Freeze, <<P as SubstrateMessageLane>::TargetChain as ChainWithTransactions>::AccountKeyPair: Freeze,

impl<P, SourceClnt, TargetClnt> Freeze for OnDemandHeadersRelay<P, SourceClnt, TargetClnt>
where SourceClnt: Freeze, TargetClnt: Freeze,

impl<P, SourceClnt, TargetClnt> Freeze for ParachainsTarget<P, SourceClnt, TargetClnt>
where SourceClnt: Freeze, TargetClnt: Freeze, <<P as SubstrateParachainsPipeline>::TargetChain as ChainWithTransactions>::AccountKeyPair: Freeze,

impl<P, SourceRelayClnt> Freeze for ParachainsSource<P, SourceRelayClnt>
where SourceRelayClnt: Freeze,

impl<P, SourceRelayClnt, TargetClnt> Freeze for OnDemandParachainsRelay<P, SourceRelayClnt, TargetClnt>
where SourceRelayClnt: Freeze, TargetClnt: Freeze,

impl<P, TargetClnt> Freeze for SubstrateFinalityTarget<P, TargetClnt>
where TargetClnt: Freeze, <<P as BaseSubstrateFinalitySyncPipeline>::BoundedTargetChain as ChainWithTransactions>::AccountKeyPair: Freeze,

impl<SC, TC, B> Freeze for BatchProofTransaction<SC, TC, B>
where <B as BatchCallBuilderConstructor<<SC as Chain>::Call>>::CallBuilder: Freeze, <TC as Chain>::BlockNumber: Freeze, <TC as Chain>::Hash: Freeze,

impl<TS> Freeze for TransactionParams<TS>
where TS: Freeze,

impl<V> Freeze for ExplicitOrMaximal<V>
where V: Freeze,

impl<'a, Block, HP, HS> Freeze for FinalizedHeaders<'a, Block, HP, HS>
where HS: Freeze, <Block as Block>::Hash: Freeze,

impl<C, B, BA> Freeze for StateMigration<C, B, BA>

impl<Block, ExecutorDispatch, Backend, G> Freeze for TestClientBuilder<Block, ExecutorDispatch, Backend, G>
where G: Freeze,

impl Freeze for Transfer

impl Freeze for MaxLocks

impl Freeze for Runtime

impl Freeze for Version

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl<T> Freeze for Call<T>

impl<T> Freeze for GenesisConfig<T>

impl<T> Freeze for Pallet<T>

impl !Freeze for TestApi

impl Freeze for Error

impl Freeze for BlockData

impl Freeze for HeadData

impl Freeze for Collator

impl Freeze for BlockData

impl Freeze for HeadData

impl Freeze for Collator

impl Freeze for Times

impl Freeze for Freq

impl Freeze for MalusType

impl Freeze for Cli

impl Freeze for RunCmd

impl<N> Freeze for Westend<N>

impl Freeze for ProxyType

impl Freeze for Origin

impl Freeze for Fellows

impl Freeze for Spender

impl Freeze for Treasurer

impl Freeze for BrokerId

impl Freeze for BrokerPot

impl Freeze for Burn

impl Freeze for EraPayout

impl Freeze for MaxKeys

impl Freeze for MaxLocks

impl Freeze for Offset

impl Freeze for Period

impl Freeze for Runtime

impl Freeze for Version

impl Freeze for AssetHub

impl Freeze for BridgeHub

impl Freeze for Broker

impl Freeze for Encointer

impl Freeze for Fellows

impl Freeze for People

impl Freeze for Wnd

impl Freeze for XcmConfig

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>

impl<T> Freeze for Call<T>

impl<T> Freeze for Pallet<T>

impl<T> Freeze for XcmToAssetHub<T>

impl Freeze for MockNet

impl Freeze for ParaA

impl Freeze for Relay

impl Freeze for Runtime

impl Freeze for Runtime

impl<T> Freeze for ParachainXcmRouter<T>

impl Freeze for TestArgs

impl<Origin, Destination, Hops, Args> Freeze for Test<Origin, Destination, Hops, Args>
where <Destination as Chain>::RuntimeOrigin: Sized, <Origin as Chain>::RuntimeOrigin: Sized + Freeze, Args: Freeze, <<Origin as Chain>::Runtime as Config>::AccountId: Freeze, <<Destination as Chain>::Runtime as Config>::AccountId: Freeze,

impl<R> Freeze for TestAccount<R>
where <<R as Chain>::Runtime as Config>::AccountId: Freeze,

impl<T, M> Freeze for DefaultParaMessageProcessor<T, M>

impl<T, Origin, Destination> Freeze for TestContext<T, Origin, Destination>
where <<Origin as Chain>::Runtime as Config>::AccountId: Freeze, <<Destination as Chain>::Runtime as Config>::AccountId: Freeze, T: Freeze,

impl Freeze for Runtime

impl Freeze for XcmConfig

impl Freeze for Runtime

impl Freeze for XcmConfig

impl Freeze for MockNet

impl Freeze for ParaA

impl Freeze for ParaB

impl Freeze for ParaC

impl Freeze for Relay

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::Hash: Freeze,

impl<T> Freeze for Pallet<T>

impl<T> Freeze for ParachainXcmRouter<T>

impl Freeze for Error

impl Freeze for Error

impl Freeze for Error

impl Freeze for Error

impl Freeze for Error

impl<AccountId, Conversion> Freeze for LocationToAccountHelper<AccountId, Conversion>

impl<Event> Freeze for CallDryRunEffects<Event>

impl<Event> Freeze for XcmDryRunEffects<Event>

impl<T> Freeze for Call<T>
where <T as Config>::RuntimeEvent: Sized,

impl<T> Freeze for Event<T>
where <T as Config>::RuntimeEvent: Sized, <T as Config>::Hash: Freeze,

impl<T> Freeze for Pallet<T>

impl Freeze for MockNet

impl Freeze for ParaA

impl Freeze for ParaB

impl Freeze for Relay

impl<T> Freeze for ParachainXcmRouter<T>

impl Freeze for DmpSink

impl Freeze for Runtime

impl Freeze for Version

impl<Block, C> !Freeze for RuntimeApiImpl<Block, C>