pub struct InstallerSynchronousProxy { /* private fields */ }
Implementations§
Source§impl InstallerSynchronousProxy
impl InstallerSynchronousProxy
pub fn new(channel: Channel) -> Self
pub fn into_channel(self) -> Channel
Sourcepub fn wait_for_event(
&self,
deadline: MonotonicInstant,
) -> Result<InstallerEvent, Error>
pub fn wait_for_event( &self, deadline: MonotonicInstant, ) -> Result<InstallerEvent, Error>
Waits until an event arrives and returns it. It is safe for other threads to make concurrent requests while waiting for an event.
Sourcepub fn install_device(
&self,
device: ClientEnd<DeviceMarker>,
device_control: ServerEnd<DeviceControlMarker>,
) -> Result<(), Error>
pub fn install_device( &self, device: ClientEnd<DeviceMarker>, device_control: ServerEnd<DeviceControlMarker>, ) -> Result<(), Error>
Installs a device on the network stack.
- request
device
the device to install on the network stack. - request
device_control
grants access to the installed device.
Sourcepub fn install_blackhole_interface(
&self,
interface: ServerEnd<ControlMarker>,
options: &Options,
) -> Result<(), Error>
pub fn install_blackhole_interface( &self, interface: ServerEnd<ControlMarker>, options: &Options, ) -> Result<(), Error>
Installs a blackhole interface on the network stack.
A “blackhole” interface is an interface that drops any outbound traffic transmitted through it, and never receives any inbound traffic.
- request
interface
grants access to the installed interface.
Trait Implementations§
Source§impl Debug for InstallerSynchronousProxy
impl Debug for InstallerSynchronousProxy
Source§impl SynchronousProxy for InstallerSynchronousProxy
impl SynchronousProxy for InstallerSynchronousProxy
Source§type Proxy = InstallerProxy
type Proxy = InstallerProxy
The async proxy for the same protocol.
Source§type Protocol = InstallerMarker
type Protocol = InstallerMarker
The protocol which this
Proxy
controls.Source§fn from_channel(inner: Channel) -> Self
fn from_channel(inner: Channel) -> Self
Create a proxy over the given channel.
Source§fn into_channel(self) -> Channel
fn into_channel(self) -> Channel
Convert the proxy back into a channel.
Source§fn as_channel(&self) -> &Channel
fn as_channel(&self) -> &Channel
Get a reference to the proxy’s underlying channel. Read more
Auto Trait Implementations§
impl Freeze for InstallerSynchronousProxy
impl RefUnwindSafe for InstallerSynchronousProxy
impl Send for InstallerSynchronousProxy
impl Sync for InstallerSynchronousProxy
impl Unpin for InstallerSynchronousProxy
impl UnwindSafe for InstallerSynchronousProxy
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