Trait adb_utils::ADBCommand

source ·
pub trait ADBCommand {
    // Required methods
    fn build(&mut self) -> Result<&mut Command, String>;
    fn process_output(&self, output: ADBResult) -> ADBResult;
}

Required Methods§

source

fn build(&mut self) -> Result<&mut Command, String>

Add mandatory parameters to the inner command and return it

source

fn process_output(&self, output: ADBResult) -> ADBResult

Remove unnecessary or data that is already known from result

Implementors§