Struct forensic_adb::Host
source · pub struct Host {
pub host: Option<String>,
pub port: Option<u16>,
}Expand description
Represents a connection to an ADB host, which multiplexes the connections to individual devices.
Fields§
§host: Option<String>The TCP host to connect to. Defaults to "localhost".
port: Option<u16>The TCP port to connect to. Defaults to 5037.
Implementations§
source§impl Host
impl Host
sourcepub async fn device_or_default<T: AsRef<str>>(
self,
device_serial: Option<&T>,
storage: AndroidStorageInput
) -> Result<Device>
pub async fn device_or_default<T: AsRef<str>>( self, device_serial: Option<&T>, storage: AndroidStorageInput ) -> Result<Device>
Searches for available devices, and selects the one as specified by device_serial.
If multiple devices are online, and no device has been specified,
the ANDROID_SERIAL environment variable can be used to select one.