Lines Matching refs:Subcommand
40 subcommand: Subcommand,
44 subcommand: Option<Subcommand>,
56 enum Subcommand { enum
101 let subcommand = self.subcommand.unwrap_or(Subcommand::Run(self.run)); in execute()
107 Subcommand::Run(c) => c.execute(), in execute()
110 Subcommand::Config(c) => c.execute(), in execute()
113 Subcommand::Compile(c) => c.execute(), in execute()
116 Subcommand::Explore(c) => c.execute(), in execute()
119 Subcommand::Serve(c) => c.execute(), in execute()
122 Subcommand::Settings(c) => c.execute(), in execute()
125 Subcommand::Wast(c) => c.execute(), in execute()
128 Subcommand::Completion(c) => c.execute(), in execute()
131 Subcommand::Objdump(c) => c.execute(), in execute()
134 Subcommand::Wizer(c) => c.execute(), in execute()