pub struct BatchTransactionResult {
pub index: usize,
pub transaction: SignedTransaction,
pub result: Result<BatchTransactionStatus, AptosError>,
}Expand description
Result of a single transaction in a batch.
Fields§
§index: usizeIndex of the transaction in the batch.
transaction: SignedTransactionThe signed transaction that was submitted.
result: Result<BatchTransactionStatus, AptosError>Result of the submission/execution.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BatchTransactionResult
impl !RefUnwindSafe for BatchTransactionResult
impl Send for BatchTransactionResult
impl Sync for BatchTransactionResult
impl Unpin for BatchTransactionResult
impl UnsafeUnpin for BatchTransactionResult
impl !UnwindSafe for BatchTransactionResult
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