pub trait ADBCommand {
// Required methods
fn build(&mut self) -> Result<&mut Command, String>;
fn process_output(&self, output: ADBResult) -> ADBResult;
}
Required Methods§
Sourcefn build(&mut self) -> Result<&mut Command, String>
fn build(&mut self) -> Result<&mut Command, String>
Add mandatory parameters to the inner command and return it
Sourcefn process_output(&self, output: ADBResult) -> ADBResult
fn process_output(&self, output: ADBResult) -> ADBResult
Remove unnecessary or data that is already known from result