pub struct DeviceInfoIteratorProxy { /* private fields */ }
Implementations§
source§impl DeviceInfoIteratorProxy
impl DeviceInfoIteratorProxy
sourcepub fn take_event_stream(&self) -> DeviceInfoIteratorEventStream
pub fn take_event_stream(&self) -> DeviceInfoIteratorEventStream
Get a Stream of events from the remote end of the DeviceInfoIterator protocol
Panics
Panics if the event stream was already taken.
sourcepub fn get_next(&self) -> QueryResponseFut<Vec<DeviceInfo>>
pub fn get_next(&self) -> QueryResponseFut<Vec<DeviceInfo>>
Return 0 devices when no more entries left.
Trait Implementations§
source§impl Clone for DeviceInfoIteratorProxy
impl Clone for DeviceInfoIteratorProxy
source§fn clone(&self) -> DeviceInfoIteratorProxy
fn clone(&self) -> DeviceInfoIteratorProxy
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 DeviceInfoIteratorProxy
impl Debug for DeviceInfoIteratorProxy
source§impl DeviceInfoIteratorProxyInterface for DeviceInfoIteratorProxy
impl DeviceInfoIteratorProxyInterface for DeviceInfoIteratorProxy
type GetNextResponseFut = QueryResponseFut<Vec<DeviceInfo, Global>>
fn get_next(&self) -> Self::GetNextResponseFut
source§impl Proxy for DeviceInfoIteratorProxy
impl Proxy for DeviceInfoIteratorProxy
§type Protocol = DeviceInfoIteratorMarker
type Protocol = DeviceInfoIteratorMarker
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