Enum solana_banks_interface::BanksRequest[][src]

pub enum BanksRequest {
    SendTransactionWithContext {
        transaction: Transaction,
    },
    GetFeesWithCommitmentAndContext {
        commitment: CommitmentLevel,
    },
    GetTransactionStatusWithContext {
        signature: Signature,
    },
    GetSlotWithContext {
        commitment: CommitmentLevel,
    },
    ProcessTransactionWithCommitmentAndContext {
        transaction: Transaction,
        commitment: CommitmentLevel,
    },
    GetAccountWithCommitmentAndContext {
        address: Pubkey,
        commitment: CommitmentLevel,
    },
}
Expand description

The request sent over the wire from the client to the server.

Variants

SendTransactionWithContext
Show fields

Fields of SendTransactionWithContext

transaction: Transaction
GetFeesWithCommitmentAndContext
Show fields

Fields of GetFeesWithCommitmentAndContext

commitment: CommitmentLevel
GetTransactionStatusWithContext
Show fields

Fields of GetTransactionStatusWithContext

signature: Signature
GetSlotWithContext
Show fields

Fields of GetSlotWithContext

commitment: CommitmentLevel
ProcessTransactionWithCommitmentAndContext
Show fields

Fields of ProcessTransactionWithCommitmentAndContext

transaction: Transactioncommitment: CommitmentLevel
GetAccountWithCommitmentAndContext
Show fields

Fields of GetAccountWithCommitmentAndContext

address: Pubkeycommitment: CommitmentLevel

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Type of response.

Type of response future.

Responds to a single request.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.