Trait 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§