pub struct ReappliedTransactionsEvent {
pub height: u64,
pub transaction_hashes: Vec<String>,
}Expand description
Transactions that were reapplied
Fields§
§height: u64The height at which the transactions were reapplied
transaction_hashes: Vec<String>The transaction hashes that were reapplied
Trait Implementations§
Source§impl Clone for ReappliedTransactionsEvent
impl Clone for ReappliedTransactionsEvent
Source§fn clone(&self) -> ReappliedTransactionsEvent
fn clone(&self) -> ReappliedTransactionsEvent
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for ReappliedTransactionsEvent
impl RefUnwindSafe for ReappliedTransactionsEvent
impl Send for ReappliedTransactionsEvent
impl Sync for ReappliedTransactionsEvent
impl Unpin for ReappliedTransactionsEvent
impl UnwindSafe for ReappliedTransactionsEvent
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