pub struct TransactionWithSign<T: Transactionable + 'static> {
pub tx: T,
}Fields§
§tx: TImplementations§
Source§impl<T: Transactionable> TransactionWithSign<T>
impl<T: Transactionable> TransactionWithSign<T>
pub fn with_signer(self, signer: Arc<Signer>) -> ExecuteSignedTransaction
Trait Implementations§
Source§impl<T: Clone + Transactionable + 'static> Clone for TransactionWithSign<T>
impl<T: Clone + Transactionable + 'static> Clone for TransactionWithSign<T>
Source§fn clone(&self) -> TransactionWithSign<T>
fn clone(&self) -> TransactionWithSign<T>
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<T> Freeze for TransactionWithSign<T>where
T: Freeze,
impl<T> RefUnwindSafe for TransactionWithSign<T>where
T: RefUnwindSafe,
impl<T> Send for TransactionWithSign<T>
impl<T> Sync for TransactionWithSign<T>
impl<T> Unpin for TransactionWithSign<T>where
T: Unpin,
impl<T> UnwindSafe for TransactionWithSign<T>where
T: UnwindSafe,
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