adb_client 3.2.0

Rust ADB (Android Debug Bridge) client library
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::Result;

/// Trait representing a transport usable by ADB protocol.
pub trait ADBTransport {
    /// Initializes the connection to this transport.
    fn connect(&mut self) -> Result<()>;

    /// Shuts down the connection to this transport.
    fn disconnect(&mut self) -> Result<()>;
}