use std::{fmt::Display, process::Command};
pub mod app_installation;
pub mod file_transfer;
pub mod general;
pub mod networking;
pub mod scripting;
pub mod shell;
pub trait ADBCommand {
fn build(&mut self) -> Result<&mut Command, String>;
fn process_output(&self, output: ADBResult) -> ADBResult;
}
pub trait ADBPathCommand {
fn path(&mut self, path: Option<String>);
fn build(&mut self) -> Result<&mut Command, String>;
fn process_output(&self, output: ADBResult) -> ADBResult;
}
pub struct ADBResult {
pub(crate) data: String,
}
impl ADBResult {
pub fn to_vec(&self) -> Vec<String> {
self.data.split("\r\n").map(|x| x.to_string()).collect()
}
}
impl Display for ADBResult {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.data)
}
}