pub struct TransactionView {
pub signer_id: AccountId,
pub public_key: PublicKey,
pub nonce: u64,
pub receiver_id: AccountId,
pub hash: CryptoHash,
pub actions: Vec<ActionView>,
pub signature: Signature,
pub priority_fee: Option<u64>,
pub nonce_index: Option<u16>,
}Expand description
Transaction view in outcome.
Fields§
§signer_id: AccountIdSigner account.
public_key: PublicKeySigner public key.
nonce: u64Transaction nonce.
receiver_id: AccountIdReceiver account.
hash: CryptoHashTransaction hash.
actions: Vec<ActionView>Actions in the transaction.
signature: SignatureTransaction signature.
priority_fee: Option<u64>Priority fee (optional, for congestion pricing).
nonce_index: Option<u16>Nonce index (for gas key multi-nonce support).
Trait Implementations§
Source§impl Clone for TransactionView
impl Clone for TransactionView
Source§fn clone(&self) -> TransactionView
fn clone(&self) -> TransactionView
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 moreSource§impl Debug for TransactionView
impl Debug for TransactionView
Source§impl<'de> Deserialize<'de> for TransactionView
impl<'de> Deserialize<'de> for TransactionView
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TransactionView
impl RefUnwindSafe for TransactionView
impl Send for TransactionView
impl Sync for TransactionView
impl Unpin for TransactionView
impl UnsafeUnpin for TransactionView
impl UnwindSafe for TransactionView
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