Struct sp_core::ChangesTrieConfigurationRange [−][src]
pub struct ChangesTrieConfigurationRange<Number, Hash> { pub zero: (Number, Hash), pub end: Option<(Number, Hash)>, pub config: Option<ChangesTrieConfiguration>, }
Expand description
Substrate changes trie configuration range.
Fields
zero: (Number, Hash)
Zero block of configuration.
end: Option<(Number, Hash)>
Last block of configuration (if configuration has been deactivated at some point).
config: Option<ChangesTrieConfiguration>
The configuration itself. None if changes tries were disabled in this range.
Trait Implementations
impl<Number: PartialEq, Hash: PartialEq> PartialEq<ChangesTrieConfigurationRange<Number, Hash>> for ChangesTrieConfigurationRange<Number, Hash>
impl<Number: PartialEq, Hash: PartialEq> PartialEq<ChangesTrieConfigurationRange<Number, Hash>> for ChangesTrieConfigurationRange<Number, Hash>
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl<Number, Hash> RefUnwindSafe for ChangesTrieConfigurationRange<Number, Hash> where
Hash: RefUnwindSafe,
Number: RefUnwindSafe,
impl<Number, Hash> Send for ChangesTrieConfigurationRange<Number, Hash> where
Hash: Send,
Number: Send,
impl<Number, Hash> Sync for ChangesTrieConfigurationRange<Number, Hash> where
Hash: Sync,
Number: Sync,
impl<Number, Hash> Unpin for ChangesTrieConfigurationRange<Number, Hash> where
Hash: Unpin,
Number: Unpin,
impl<Number, Hash> UnwindSafe for ChangesTrieConfigurationRange<Number, Hash> where
Hash: UnwindSafe,
Number: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
impl<T> Downcast for T where
T: Any,
impl<T> Downcast for T where
T: Any,
Convert Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read more
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more
Convert &Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read more
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert &mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
type Output = T
type Output = T
Should always be Self
The counterpart to unchecked_from
.
pub fn vzip(self) -> V
impl<T> MaybeDebug for T where
T: Debug,