pub enum Commands {
Show 19 variants
Add {
command: AddCommand,
},
Auth {
command: AuthCommand,
},
Build {
command: BuildCommand,
},
Config {
command: ConfigCommand,
},
Dev(DevArgs),
Diagnostics(DiagnosticsArgs),
Format(FormatArgs),
Init(InitArgs),
Lint(LintArgs),
Logs(LogsArgs),
Models {
command: ModelsCommand,
},
Node(NodeArgs),
Remote {
command: RemoteCommand,
},
Run {
command: RunCommand,
},
Setup(SetupArgs),
Status,
Topics {
command: TopicsCommand,
},
Topology(TopologyArgs),
Upload(UploadArgs),
}Variants§
Add
Add components to the project (nodes, drivers, etc.)
Fields
command: AddCommandAuth
Manage authentication (login, logout, whoami)
Fields
command: AuthCommandBuild
Build the project for a specific target
Fields
command: BuildCommandConfig
Manage robot configurations (push, pull, list)
Fields
command: ConfigCommandDev(DevArgs)
Start development mode with hot-reload
Diagnostics(DiagnosticsArgs)
Real-time diagnostics monitoring (streaming, simulation, system resources)
Format(FormatArgs)
Format code
Init(InitArgs)
Initialize a new robot project
Lint(LintArgs)
Run linting and code quality checks
Logs(LogsArgs)
View logs from nodes
Models
AI model management (download, list, remove models from HuggingFace)
Fields
command: ModelsCommandNode(NodeArgs)
Run a single node (internal command used by standalone mode)
Remote
Manage remote AI nodes running in Docker containers
Fields
command: RemoteCommandRun
Run the robot binary for a specific target
Fields
command: RunCommandSetup(SetupArgs)
Run project setup script (installs dependencies)
Status
Show project status
Topics
Topic operations - list, watch, monitor, and record topics
Fields
command: TopicsCommandTopology(TopologyArgs)
Analyze project topology (nodes, pub/sub topics, ports)
Upload(UploadArgs)
Upload robot binary to the binary registry (for launcher deployment)
Trait Implementations§
Source§impl FromArgMatches for Commands
impl FromArgMatches for Commands
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 Commands
impl Subcommand for Commands
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 subcommandAuto Trait Implementations§
impl Freeze for Commands
impl RefUnwindSafe for Commands
impl Send for Commands
impl Sync for Commands
impl Unpin for Commands
impl UnwindSafe for Commands
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
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>
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>
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