pub enum BanksRequest {
Show 13 variants
SendTransactionWithContext {
transaction: VersionedTransaction,
},
GetFeesWithCommitmentAndContext {
commitment: CommitmentLevel,
},
GetTransactionStatusWithContext {
signature: Signature,
},
GetSlotWithContext {
commitment: CommitmentLevel,
},
GetBlockHeightWithContext {
commitment: CommitmentLevel,
},
ProcessTransactionWithPreflightAndCommitmentAndContext {
transaction: VersionedTransaction,
commitment: CommitmentLevel,
},
ProcessTransactionWithCommitmentAndContext {
transaction: VersionedTransaction,
commitment: CommitmentLevel,
},
ProcessTransactionWithMetadataAndContext {
transaction: VersionedTransaction,
},
SimulateTransactionWithCommitmentAndContext {
transaction: VersionedTransaction,
commitment: CommitmentLevel,
},
GetAccountWithCommitmentAndContext {
address: Pubkey,
commitment: CommitmentLevel,
},
GetLatestBlockhashWithContext {},
GetLatestBlockhashWithCommitmentAndContext {
commitment: CommitmentLevel,
},
GetFeeForMessageWithCommitmentAndContext {
message: Message,
commitment: CommitmentLevel,
},
}
Expand description
The request sent over the wire from the client to the server.
Variants§
SendTransactionWithContext
Fields
§
transaction: VersionedTransaction
GetFeesWithCommitmentAndContext
Fields
§
commitment: CommitmentLevel
GetTransactionStatusWithContext
GetSlotWithContext
Fields
§
commitment: CommitmentLevel
GetBlockHeightWithContext
Fields
§
commitment: CommitmentLevel
ProcessTransactionWithPreflightAndCommitmentAndContext
ProcessTransactionWithCommitmentAndContext
ProcessTransactionWithMetadataAndContext
Fields
§
transaction: VersionedTransaction
SimulateTransactionWithCommitmentAndContext
GetAccountWithCommitmentAndContext
GetLatestBlockhashWithContext
GetLatestBlockhashWithCommitmentAndContext
Fields
§
commitment: CommitmentLevel
GetFeeForMessageWithCommitmentAndContext
Trait Implementations§
source§impl Debug for BanksRequest
impl Debug for BanksRequest
source§impl<'de> Deserialize<'de> for BanksRequest
impl<'de> Deserialize<'de> for BanksRequest
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 Serialize for BanksRequest
impl Serialize for BanksRequest
source§impl<S> Serve<BanksRequest> for ServeBanks<S>where
S: Banks,
impl<S> Serve<BanksRequest> for ServeBanks<S>where
S: Banks,
source§type Resp = BanksResponse
type Resp = BanksResponse
Type of response.
source§type Fut = BanksResponseFut<S>
type Fut = BanksResponseFut<S>
Type of response future.
Auto Trait Implementations§
impl Freeze for BanksRequest
impl RefUnwindSafe for BanksRequest
impl Send for BanksRequest
impl Sync for BanksRequest
impl Unpin for BanksRequest
impl UnwindSafe for BanksRequest
Blanket Implementations§
source§impl<T> AbiEnumVisitor for T
impl<T> AbiEnumVisitor for T
default fn visit_for_abi( &self, _digester: &mut AbiDigester, ) -> Result<AbiDigester, DigestError>
source§impl<T> AbiEnumVisitor for T
impl<T> AbiEnumVisitor for T
default fn visit_for_abi( &self, digester: &mut AbiDigester, ) -> Result<AbiDigester, DigestError>
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> 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