pub struct ProgramRpcClientSendTransaction;Trait Implementations§
Source§impl Clone for ProgramRpcClientSendTransaction
impl Clone for ProgramRpcClientSendTransaction
Source§fn clone(&self) -> ProgramRpcClientSendTransaction
fn clone(&self) -> ProgramRpcClientSendTransaction
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 Default for ProgramRpcClientSendTransaction
impl Default for ProgramRpcClientSendTransaction
Source§fn default() -> ProgramRpcClientSendTransaction
fn default() -> ProgramRpcClientSendTransaction
Returns the “default value” for a type. Read more
Source§impl SendTransaction for ProgramRpcClientSendTransaction
impl SendTransaction for ProgramRpcClientSendTransaction
type Output = RpcClientResponse
Source§impl SimulateTransactionRpc for ProgramRpcClientSendTransaction
impl SimulateTransactionRpc for ProgramRpcClientSendTransaction
fn simulate<'a>( &self, client: &'a RpcClient, transaction: &'a Transaction, ) -> Pin<Box<dyn Future<Output = ProgramClientResult<Self::SimulationOutput>> + Send + 'a>>
impl Copy for ProgramRpcClientSendTransaction
Auto Trait Implementations§
impl Freeze for ProgramRpcClientSendTransaction
impl RefUnwindSafe for ProgramRpcClientSendTransaction
impl Send for ProgramRpcClientSendTransaction
impl Sync for ProgramRpcClientSendTransaction
impl Unpin for ProgramRpcClientSendTransaction
impl UnwindSafe for ProgramRpcClientSendTransaction
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more