Lines Matching refs:command
72 command: &mut args::Command, in perform_command()
78 let requests = match command { in perform_command()
80 command.get_requests(&client) in perform_command()
85 _ => vec![command.get_request_bytes()], in perform_command()
90 let result = match command { in perform_command()
93 continuous_perform_command(command, &client, grpc_method, req, verbose)? in perform_command()
96 continuous_perform_command(command, &client, grpc_method, req, verbose)? in perform_command()
114 if let Err(e) = process_result(command, result, verbose) { in perform_command()
145 command: &args::Command, in continuous_perform_command()
152 process_result(command, client.send_grpc(&grpc_method, request), verbose)?; in continuous_perform_command()
158 command: &args::Command, in process_result()
163 command.print_response(result.byte_vec().as_slice(), verbose); in process_result()
174 if matches!(args.command, args::Command::Gui) { in rust_main()
178 } else if matches!(args.command, args::Command::Artifact) { in rust_main()
183 } else if matches!(args.command, args::Command::Bumble) { in rust_main()
188 let grpc_method = args.command.grpc_method(); in rust_main()
204 if let Err(e) = perform_command(&mut args.command, client, grpc_method, args.verbose) { in rust_main()