pub struct DriverHostLauncherSynchronousProxy { /* private fields */ }
Implementations§
Source§impl DriverHostLauncherSynchronousProxy
impl DriverHostLauncherSynchronousProxy
pub fn new(channel: Channel) -> Self
pub fn into_channel(self) -> Channel
Sourcepub fn wait_for_event(
&self,
deadline: MonotonicInstant,
) -> Result<DriverHostLauncherEvent, Error>
pub fn wait_for_event( &self, deadline: MonotonicInstant, ) -> Result<DriverHostLauncherEvent, 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 launch(
&self,
payload: DriverHostLauncherLaunchRequest,
___deadline: MonotonicInstant,
) -> Result<DriverHostLauncherLaunchResult, Error>
pub fn launch( &self, payload: DriverHostLauncherLaunchRequest, ___deadline: MonotonicInstant, ) -> Result<DriverHostLauncherLaunchResult, Error>
Launches |driver_host_binary| into |process|. This includes:
- Setting up the address space for driver host module and dependencies using remote dynamic linking.
- Creating the stack for the process.
- Starting the process.
- Sending the bootstrap messages to the process.
Trait Implementations§
Source§impl From<Channel> for DriverHostLauncherSynchronousProxy
impl From<Channel> for DriverHostLauncherSynchronousProxy
Source§impl From<DriverHostLauncherSynchronousProxy> for Handle
impl From<DriverHostLauncherSynchronousProxy> for Handle
Source§fn from(value: DriverHostLauncherSynchronousProxy) -> Self
fn from(value: DriverHostLauncherSynchronousProxy) -> Self
Converts to this type from the input type.
Source§impl SynchronousProxy for DriverHostLauncherSynchronousProxy
impl SynchronousProxy for DriverHostLauncherSynchronousProxy
Source§type Proxy = DriverHostLauncherProxy
type Proxy = DriverHostLauncherProxy
The async proxy for the same protocol.
Source§type Protocol = DriverHostLauncherMarker
type Protocol = DriverHostLauncherMarker
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 DriverHostLauncherSynchronousProxy
impl RefUnwindSafe for DriverHostLauncherSynchronousProxy
impl Send for DriverHostLauncherSynchronousProxy
impl Sync for DriverHostLauncherSynchronousProxy
impl Unpin for DriverHostLauncherSynchronousProxy
impl UnwindSafe for DriverHostLauncherSynchronousProxy
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