| 107 | /// Subcommands the CLI uses to re-invoke itself; not user-facing entry points. |
| 108 | #[derive(Subcommand, Debug)] |
| 109 | pub(crate) enum InternalCommands { |
| 110 | /// Run the bundled samply profiler. Args are forwarded to samply. |
| 111 | #[command(disable_help_flag = true, disable_help_subcommand = true)] |
| 112 | Samply(samply::SamplyArgs), |
| 113 | } |
| 114 | |
| 115 | impl InternalCommands { |
| 116 | /// Build a [`CommandBuilder`] that re-execs the current binary into this |
nothing calls this directly
no outgoing calls
no test coverage detected