[][src]Struct mozdevice::Host

pub struct Host {
    pub host: Option<String>,
    pub port: Option<u16>,
    pub read_timeout: Option<Duration>,
    pub write_timeout: Option<Duration>,
}

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.

Methods

impl Host[src]

pub fn device_or_default<T: AsRef<str>>(
    self,
    device_serial: Option<&T>
) -> Result<Device>
[src]

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.

pub fn connect(&self) -> Result<TcpStream>[src]

pub fn execute_command(
    &self,
    command: &str,
    has_output: bool,
    has_length: bool
) -> Result<String>
[src]

pub fn execute_host_command(
    &self,
    host_command: &str,
    has_length: bool,
    has_output: bool
) -> Result<String>
[src]

pub fn features<B: FromIterator<String>>(&self) -> Result<B>[src]

pub fn devices<B: FromIterator<DeviceInfo>>(&self) -> Result<B>[src]

Trait Implementations

impl Default for Host[src]

impl Debug for Host[src]

Auto Trait Implementations

impl Send for Host

impl Sync for Host

impl Unpin for Host

impl UnwindSafe for Host

impl RefUnwindSafe for Host

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,