pub struct ControlProxy { /* private fields */ }
Implementations§
source§impl ControlProxy
impl ControlProxy
sourcepub fn new(channel: AsyncChannel) -> Self
pub fn new(channel: AsyncChannel) -> Self
Create a new Proxy for fuchsia.net.virtualization/Control.
sourcepub fn take_event_stream(&self) -> ControlEventStream
pub fn take_event_stream(&self) -> ControlEventStream
Get a Stream of events from the remote end of the protocol.
Panics
Panics if the event stream was already taken.
sourcepub fn create_network(
&self,
config: &Config,
network: ServerEnd<NetworkMarker>
) -> Result<(), Error>
pub fn create_network( &self, config: &Config, network: ServerEnd<NetworkMarker> ) -> Result<(), Error>
Create a new network with configurable upstream connectivity.
The network itself is always guaranteed to be created, but upstream connectivity may not be established initially and may be lost at any time.
- request
config
network configuration. - request
network
provides control over the created network. The protocol will be terminated after emitting a terminal event if the network cannot be added.
Trait Implementations§
source§impl Clone for ControlProxy
impl Clone for ControlProxy
source§fn clone(&self) -> ControlProxy
fn clone(&self) -> ControlProxy
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 ControlProxyInterface for ControlProxy
impl ControlProxyInterface for ControlProxy
fn create_network( &self, config: &Config, network: ServerEnd<NetworkMarker> ) -> Result<(), Error>
source§impl Debug for ControlProxy
impl Debug for ControlProxy
source§impl Proxy for ControlProxy
impl Proxy for ControlProxy
§type Protocol = ControlMarker
type Protocol = ControlMarker
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 !RefUnwindSafe for ControlProxy
impl Send for ControlProxy
impl Sync for ControlProxy
impl Unpin for ControlProxy
impl !UnwindSafe for ControlProxy
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