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