fidl_fuchsia_hardware_adb

Trait DeviceProxyInterface

Source
pub trait DeviceProxyInterface: Send + Sync {
    type StartResponseFut: Future<Output = Result<DeviceStartResult, Error>> + Send;
    type StopResponseFut: Future<Output = Result<DeviceStopResult, Error>> + Send;

    // Required methods
    fn start(
        &self,
        interface: ServerEnd<UsbAdbImpl_Marker>,
    ) -> Self::StartResponseFut;
    fn stop(&self) -> Self::StopResponseFut;
}

Required Associated Types§

Required Methods§

Source

fn start( &self, interface: ServerEnd<UsbAdbImpl_Marker>, ) -> Self::StartResponseFut

Source

fn stop(&self) -> Self::StopResponseFut

Implementors§