pub struct Finalization {
pub view: u64,
pub parent: u64,
pub payload: Digest,
pub signature: Signature,
}Fields§
§view: u64§parent: u64§payload: Digest§signature: SignatureImplementations§
Source§impl Finalization
impl Finalization
Trait Implementations§
Source§impl Clone for Finalization
impl Clone for Finalization
Source§fn clone(&self) -> Finalization
fn clone(&self) -> Finalization
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Finalization
impl Debug for Finalization
Source§impl PartialEq for Finalization
impl PartialEq for Finalization
Source§impl SizedSerialize for Finalization
impl SizedSerialize for Finalization
const SERIALIZED_LEN: usize = 144usize
impl Eq for Finalization
impl StructuralPartialEq for Finalization
Auto Trait Implementations§
impl Freeze for Finalization
impl RefUnwindSafe for Finalization
impl Send for Finalization
impl Sync for Finalization
impl Unpin for Finalization
impl UnwindSafe for Finalization
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