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

Required Methods§

source

fn path(&mut self, path: Option<String>)

Set the path for the remote location

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§