pub struct NetworkContextProxy { /* private fields */ }
Implementations§
source§impl NetworkContextProxy
impl NetworkContextProxy
sourcepub fn take_event_stream(&self) -> NetworkContextEventStream
pub fn take_event_stream(&self) -> NetworkContextEventStream
Get a Stream of events from the remote end of the NetworkContext protocol
Panics
Panics if the event stream was already taken.
pub fn clone( &self, network_context: ServerEnd<NetworkContextMarker> ) -> Result<(), Error>
pub fn get_network_manager( &self, net_manager: ServerEnd<NetworkManagerMarker> ) -> Result<(), Error>
pub fn get_endpoint_manager( &self, endp_manager: ServerEnd<EndpointManagerMarker> ) -> Result<(), Error>
sourcepub fn setup(
&self,
networks: &mut dyn ExactSizeIterator<Item = &mut NetworkSetup>
) -> QueryResponseFut<(i32, Option<ClientEnd<SetupHandleMarker>>)>
pub fn setup( &self, networks: &mut dyn ExactSizeIterator<Item = &mut NetworkSetup> ) -> QueryResponseFut<(i32, Option<ClientEnd<SetupHandleMarker>>)>
Creates a collection of networks described by networks
.
status
is ZX_OK
for success
setup_handle
is a resource that references and maintains the lifecycle of
the created networks and endpoints.
Trait Implementations§
source§impl Clone for NetworkContextProxy
impl Clone for NetworkContextProxy
source§fn clone(&self) -> NetworkContextProxy
fn clone(&self) -> NetworkContextProxy
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 NetworkContextProxy
impl Debug for NetworkContextProxy
source§impl NetworkContextProxyInterface for NetworkContextProxy
impl NetworkContextProxyInterface for NetworkContextProxy
fn clone( &self, network_context: ServerEnd<NetworkContextMarker> ) -> Result<(), Error>
fn get_network_manager( &self, net_manager: ServerEnd<NetworkManagerMarker> ) -> Result<(), Error>
fn get_endpoint_manager( &self, endp_manager: ServerEnd<EndpointManagerMarker> ) -> Result<(), Error>
type SetupResponseFut = QueryResponseFut<(i32, Option<ClientEnd<SetupHandleMarker>>)>
fn setup( &self, networks: &mut dyn ExactSizeIterator<Item = &mut NetworkSetup> ) -> Self::SetupResponseFut
source§impl Proxy for NetworkContextProxy
impl Proxy for NetworkContextProxy
§type Protocol = NetworkContextMarker
type Protocol = NetworkContextMarker
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