pub struct PrefilledTransaction {
pub index: u16,
pub tx: Transaction,
}Expand description
A prefilled transaction: index in the block + the full transaction.
Fields§
§index: u16Differential index (gap from last prefilled index).
tx: TransactionThe full transaction.
Trait Implementations§
Source§impl Clone for PrefilledTransaction
impl Clone for PrefilledTransaction
Source§fn clone(&self) -> PrefilledTransaction
fn clone(&self) -> PrefilledTransaction
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 PrefilledTransaction
impl RefUnwindSafe for PrefilledTransaction
impl Send for PrefilledTransaction
impl Sync for PrefilledTransaction
impl Unpin for PrefilledTransaction
impl UnsafeUnpin for PrefilledTransaction
impl UnwindSafe for PrefilledTransaction
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