Trait ADBPathCommand

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