pub struct TransactionMeta {
pub total_fees: Tokens,
pub out_msgs: Vec<Lazy<OwnedMessage>>,
pub next_lt: u64,
}Expand description
Short transaction description.
Fields§
§total_fees: TokensA sum of all collected fees from all phases.
out_msgs: Vec<Lazy<OwnedMessage>>List of outbound messages.
next_lt: u64Minimal logical time for the next transaction on this account.
Trait Implementations§
Source§impl Clone for TransactionMeta
impl Clone for TransactionMeta
Source§fn clone(&self) -> TransactionMeta
fn clone(&self) -> TransactionMeta
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 TransactionMeta
impl !RefUnwindSafe for TransactionMeta
impl !Send for TransactionMeta
impl !Sync for TransactionMeta
impl Unpin for TransactionMeta
impl !UnwindSafe for TransactionMeta
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