Struct mozdevice::Host[][src]

pub struct Host {
    pub host: Option<String>,
    pub port: Option<u16>,
    pub read_timeout: Option<Duration>,
    pub write_timeout: Option<Duration>,
}
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.

read_timeout: Option<Duration>

Optional TCP read timeout duration. Defaults to 2s.

write_timeout: Option<Duration>

Optional TCP write timeout duration. Defaults to 2s.

Implementations

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.

Trait Implementations

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.