pub struct State<H, N> {
pub prevote_ghost: Option<(H, N)>,
pub finalized: Option<(H, N)>,
pub estimate: Option<(H, N)>,
pub completable: bool,
}
Expand description
State of the round.
Fields§
§prevote_ghost: Option<(H, N)>
The prevote-GHOST block.
finalized: Option<(H, N)>
The finalized block.
estimate: Option<(H, N)>
The new round-estimate.
completable: bool
Whether the round is completable.
Implementations§
Trait Implementations§
impl<H, N> StructuralPartialEq for State<H, N>
Auto Trait Implementations§
impl<H, N> Freeze for State<H, N>
impl<H, N> RefUnwindSafe for State<H, N>where
H: RefUnwindSafe,
N: RefUnwindSafe,
impl<H, N> Send for State<H, N>
impl<H, N> Sync for State<H, N>
impl<H, N> Unpin for State<H, N>
impl<H, N> UnwindSafe for State<H, N>where
H: UnwindSafe,
N: UnwindSafe,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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 more