[][src]Trait adb_rs::push::AdbPush

pub trait AdbPush {
    fn push_reader<R: Read + Seek>(
        &mut self,
        r: R,
        remote_path: &str
    ) -> AdbResult<()>;
fn push<P: AsRef<Path>>(
        &mut self,
        local_path: P,
        remote_path: &str
    ) -> AdbResult<()>; }

Required methods

fn push_reader<R: Read + Seek>(
    &mut self,
    r: R,
    remote_path: &str
) -> AdbResult<()>

fn push<P: AsRef<Path>>(
    &mut self,
    local_path: P,
    remote_path: &str
) -> AdbResult<()>

Loading content...

Implementors

impl AdbPush for AdbConnection[src]

Loading content...