pub struct PrepopulateTransaction {
pub signer_id: AccountId,
pub receiver_id: AccountId,
pub actions: Vec<Action>,
}Expand description
An internal type that represents unsigned transaction.
Fields§
§signer_id: AccountIdThe account that will sign the transaction.
receiver_id: AccountIdThe account that will receive the transaction
actions: Vec<Action>The actions that will be executed by the transaction.
Trait Implementations§
Source§impl Clone for PrepopulateTransaction
impl Clone for PrepopulateTransaction
Source§fn clone(&self) -> PrepopulateTransaction
fn clone(&self) -> PrepopulateTransaction
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 PrepopulateTransaction
impl Debug for PrepopulateTransaction
Source§impl<'de> Deserialize<'de> for PrepopulateTransaction
impl<'de> Deserialize<'de> for PrepopulateTransaction
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
Source§impl From<SignedTransaction> for PrepopulateTransaction
impl From<SignedTransaction> for PrepopulateTransaction
Source§fn from(tr: SignedTransaction) -> Self
fn from(tr: SignedTransaction) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PrepopulateTransaction
impl PartialEq for PrepopulateTransaction
Source§impl Serialize for PrepopulateTransaction
impl Serialize for PrepopulateTransaction
impl Eq for PrepopulateTransaction
impl StructuralPartialEq for PrepopulateTransaction
Auto Trait Implementations§
impl Freeze for PrepopulateTransaction
impl RefUnwindSafe for PrepopulateTransaction
impl Send for PrepopulateTransaction
impl Sync for PrepopulateTransaction
impl Unpin for PrepopulateTransaction
impl UnwindSafe for PrepopulateTransaction
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