Struct solana_banks_client::TarpcClient
source · pub struct TarpcClient(/* private fields */);
Expand description
The client stub that makes RPC calls to the server. All request methods return Futures.
Implementations§
source§impl BanksClient
impl BanksClient
sourcepub fn new<T>(
config: Config,
transport: T
) -> NewClient<BanksClient, RequestDispatch<BanksRequest, BanksResponse, T>>where
T: Transport<ClientMessage<BanksRequest>, Response<BanksResponse>>,
pub fn new<T>( config: Config, transport: T ) -> NewClient<BanksClient, RequestDispatch<BanksRequest, BanksResponse, T>>where T: Transport<ClientMessage<BanksRequest>, Response<BanksResponse>>,
Returns a new client stub that sends requests over the given transport.
source§impl BanksClient
impl BanksClient
pub fn send_transaction_with_context( &self, ctx: Context, transaction: VersionedTransaction ) -> impl Future<Output = Result<(), RpcError>>
pub fn get_fees_with_commitment_and_context( &self, ctx: Context, commitment: CommitmentLevel ) -> impl Future<Output = Result<(FeeCalculator, Hash, u64), RpcError>>
👎Deprecated since 1.9.0: Please use
get_fee_for_message_with_commitment_and_context
insteadpub fn get_transaction_status_with_context( &self, ctx: Context, signature: Signature ) -> impl Future<Output = Result<Option<TransactionStatus>, RpcError>>
pub fn get_slot_with_context( &self, ctx: Context, commitment: CommitmentLevel ) -> impl Future<Output = Result<u64, RpcError>>
pub fn get_block_height_with_context( &self, ctx: Context, commitment: CommitmentLevel ) -> impl Future<Output = Result<u64, RpcError>>
pub fn process_transaction_with_preflight_and_commitment_and_context( &self, ctx: Context, transaction: VersionedTransaction, commitment: CommitmentLevel ) -> impl Future<Output = Result<BanksTransactionResultWithSimulation, RpcError>>
pub fn process_transaction_with_commitment_and_context( &self, ctx: Context, transaction: VersionedTransaction, commitment: CommitmentLevel ) -> impl Future<Output = Result<Option<Result<(), TransactionError>>, RpcError>>
pub fn process_transaction_with_metadata_and_context( &self, ctx: Context, transaction: VersionedTransaction ) -> impl Future<Output = Result<BanksTransactionResultWithMetadata, RpcError>>
pub fn simulate_transaction_with_commitment_and_context( &self, ctx: Context, transaction: VersionedTransaction, commitment: CommitmentLevel ) -> impl Future<Output = Result<BanksTransactionResultWithSimulation, RpcError>>
pub fn get_account_with_commitment_and_context( &self, ctx: Context, address: Pubkey, commitment: CommitmentLevel ) -> impl Future<Output = Result<Option<Account>, RpcError>>
pub fn get_latest_blockhash_with_context( &self, ctx: Context ) -> impl Future<Output = Result<Hash, RpcError>>
pub fn get_latest_blockhash_with_commitment_and_context( &self, ctx: Context, commitment: CommitmentLevel ) -> impl Future<Output = Result<Option<(Hash, u64)>, RpcError>>
pub fn get_fee_for_message_with_commitment_and_context( &self, ctx: Context, message: Message, commitment: CommitmentLevel ) -> impl Future<Output = Result<Option<u64>, RpcError>>
Trait Implementations§
source§impl Clone for BanksClient
impl Clone for BanksClient
source§fn clone(&self) -> BanksClient
fn clone(&self) -> BanksClient
Returns a copy 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 !RefUnwindSafe for BanksClient
impl Send for BanksClient
impl Sync for BanksClient
impl Unpin for BanksClient
impl !UnwindSafe for BanksClient
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