pub struct DeviceProxy { /* private fields */ }
Implementations§
Source§impl DeviceProxy
impl DeviceProxy
Sourcepub fn take_event_stream(&self) -> DeviceEventStream
pub fn take_event_stream(&self) -> DeviceEventStream
Get a Stream of events from the remote end of the protocol.
§Panics
Panics if the event stream was already taken.
Sourcepub fn start_adb(
&self,
interface: ServerEnd<UsbAdbImpl_Marker>,
) -> QueryResponseFut<DeviceStartAdbResult, DefaultFuchsiaResourceDialect>
pub fn start_adb( &self, interface: ServerEnd<UsbAdbImpl_Marker>, ) -> QueryResponseFut<DeviceStartAdbResult, DefaultFuchsiaResourceDialect>
Start USB ADB protocol with |interface|.
Sourcepub fn stop_adb(
&self,
) -> QueryResponseFut<DeviceStopAdbResult, DefaultFuchsiaResourceDialect>
pub fn stop_adb( &self, ) -> QueryResponseFut<DeviceStopAdbResult, DefaultFuchsiaResourceDialect>
Stops USB ADB protocol.
Trait Implementations§
Source§impl Clone for DeviceProxy
impl Clone for DeviceProxy
Source§fn clone(&self) -> DeviceProxy
fn clone(&self) -> DeviceProxy
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DeviceProxy
impl Debug for DeviceProxy
Source§impl DeviceProxyInterface for DeviceProxy
impl DeviceProxyInterface for DeviceProxy
type StartAdbResponseFut = QueryResponseFut<Result<(), i32>>
type StopAdbResponseFut = QueryResponseFut<Result<(), i32>>
fn start_adb( &self, interface: ServerEnd<UsbAdbImpl_Marker>, ) -> Self::StartAdbResponseFut
fn stop_adb(&self) -> Self::StopAdbResponseFut
Source§impl Proxy for DeviceProxy
impl Proxy for DeviceProxy
Source§type Protocol = DeviceMarker
type Protocol = DeviceMarker
The protocol which this
Proxy
controls.Source§fn from_channel(inner: AsyncChannel) -> Self
fn from_channel(inner: AsyncChannel) -> Self
Create a proxy over the given channel.
Source§fn into_channel(self) -> Result<AsyncChannel, Self>
fn into_channel(self) -> Result<AsyncChannel, Self>
Attempt to convert the proxy back into a channel. Read more
Source§fn as_channel(&self) -> &AsyncChannel
fn as_channel(&self) -> &AsyncChannel
Get a reference to the proxy’s underlying channel. Read more
§fn into_client_end(self) -> Result<ClientEnd<Self::Protocol>, Self>
fn into_client_end(self) -> Result<ClientEnd<Self::Protocol>, Self>
Attempt to convert the proxy back into a client end. Read more
Auto Trait Implementations§
impl Freeze for DeviceProxy
impl !RefUnwindSafe for DeviceProxy
impl Send for DeviceProxy
impl Sync for DeviceProxy
impl Unpin for DeviceProxy
impl !UnwindSafe for DeviceProxy
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more