pub struct PreparedBlockData {
pub header: BlockHeader,
pub events: Vec<BlockEvent>,
pub latest_era_with_committed_validators: u64,
pub codes_queue: VecDeque<CodeId>,
pub last_committed_batch: Digest,
pub last_committed_mb: H256,
pub last_committed_eb: H256,
}Fields§
§header: BlockHeader§events: Vec<BlockEvent>§latest_era_with_committed_validators: u64§codes_queue: VecDeque<CodeId>§last_committed_batch: Digest§last_committed_mb: H256§last_committed_eb: H256Auto Trait Implementations§
impl Freeze for PreparedBlockData
impl RefUnwindSafe for PreparedBlockData
impl Send for PreparedBlockData
impl Sync for PreparedBlockData
impl Unpin for PreparedBlockData
impl UnsafeUnpin for PreparedBlockData
impl UnwindSafe for PreparedBlockData
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T, Outer> IsWrappedBy<Outer> for T
impl<T, Outer> IsWrappedBy<Outer> for T
impl<T> JsonSchemaMaybe for T
impl<T> MaybeRefUnwindSafe for Twhere
T: RefUnwindSafe,
Source§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
Source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
The counterpart to
unchecked_from.