pub enum Command {
Show 13 variants
Auth(Args),
Agent(Args),
Endpoint(Args),
Team(Args),
Usage(Args),
Metrics(Args),
Chain(Args),
Billing(Args),
Stream(Args),
Webhook(Args),
Kv(Args),
Sql(Args),
Completions {
shell: Shell,
},
}Variants§
Auth(Args)
Manage CLI authentication (API key).
Agent(Args)
Resources for AI agents and automated tools.
Endpoint(Args)
Manage RPC endpoints on your account.
Team(Args)
Manage teams.
Usage(Args)
View account usage.
Metrics(Args)
View account or endpoint metrics.
Chain(Args)
List supported blockchains.
Billing(Args)
View invoices and payments.
Stream(Args)
Manage blockchain data streams.
Webhook(Args)
Manage filter-template webhooks.
Kv(Args)
Manage the Quicknode KV store (sets and lists).
Sql(Args)
Run SQL queries and inspect cluster schemas.
Completions
Generate shell completion scripts.
When installing qn through a package manager, it’s possible that no additional shell configuration is necessary to gain completion support. Homebrew and distro packages place the script for you.
If you need to set up completions manually, follow the instructions below. The exact config file locations might vary based on your system. Make sure to restart your shell before testing whether completions are working.
Trait Implementations§
Source§impl FromArgMatches for Command
impl FromArgMatches for Command
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
ArgMatches to self.Source§fn update_from_arg_matches_mut<'b>(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut<'b>( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
ArgMatches to self.Source§impl Subcommand for Command
impl Subcommand for Command
Source§fn augment_subcommands<'b>(__clap_app: Command) -> Command
fn augment_subcommands<'b>(__clap_app: Command) -> Command
Source§fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§fn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Self can parse a specific subcommand