pub enum BanksRequest {
SendTransactionWithContext {
transaction: VersionedTransaction,
},
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: VersionedTransactionGetTransactionStatusWithContext
GetSlotWithContext
Fields
§
commitment: CommitmentLevelGetBlockHeightWithContext
Fields
§
commitment: CommitmentLevelProcessTransactionWithPreflightAndCommitmentAndContext
ProcessTransactionWithCommitmentAndContext
ProcessTransactionWithMetadataAndContext
Fields
§
transaction: VersionedTransactionSimulateTransactionWithCommitmentAndContext
GetAccountWithCommitmentAndContext
GetLatestBlockhashWithContext
GetLatestBlockhashWithCommitmentAndContext
Fields
§
commitment: CommitmentLevelGetFeeForMessageWithCommitmentAndContext
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> 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