pub struct SendSyncResponseEvent {
pub timestamp: SystemTime,
pub peer: VerifyingKey,
pub blocks: Vec<Block>,
pub highest_pc: PhaseCertificate,
}
Expand description
The replica’s sync server sent a sync response to a peer identifiable by its public key. Includes information about the vector of blocks and the Highest Quroum Certificate sent to the peer.
Fields§
§timestamp: SystemTime
§peer: VerifyingKey
§blocks: Vec<Block>
§highest_pc: PhaseCertificate
Trait Implementations§
source§impl Logger for SendSyncResponseEvent
impl Logger for SendSyncResponseEvent
Auto Trait Implementations§
impl Freeze for SendSyncResponseEvent
impl RefUnwindSafe for SendSyncResponseEvent
impl Send for SendSyncResponseEvent
impl Sync for SendSyncResponseEvent
impl Unpin for SendSyncResponseEvent
impl UnwindSafe for SendSyncResponseEvent
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