adb_cli 2.1.16

Rust ADB (Android Debug Bridge) CLI
1
2
3
4
5
6
7
8
9
10
11
use clap::Parser;
use std::net::SocketAddr;

use super::DeviceCommands;

#[derive(Parser, Debug)]
pub struct TcpCommand {
    pub address: SocketAddr,
    #[clap(subcommand)]
    pub commands: DeviceCommands,
}