pub struct DeviceProxy_SynchronousProxy { /* private fields */ }
Implementations§
source§impl DeviceProxy_SynchronousProxy
impl DeviceProxy_SynchronousProxy
pub fn new(channel: Channel) -> Self
pub fn into_channel(self) -> Channel
sourcepub fn wait_for_event(&self, deadline: Time) -> Result<DeviceProxy_Event, Error>
pub fn wait_for_event(&self, deadline: Time) -> Result<DeviceProxy_Event, 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 serve_controller(
&self,
req: ServerEnd<ControllerMarker>
) -> Result<(), Error>
pub fn serve_controller( &self, req: ServerEnd<ControllerMarker> ) -> Result<(), Error>
Serve the Controller protocol for this device.
sourcepub fn serve_device(
&self,
req: ServerEnd<DeviceInstanceMarker>
) -> Result<(), Error>
pub fn serve_device( &self, req: ServerEnd<DeviceInstanceMarker> ) -> Result<(), Error>
Serve the device’s FIDL protocol.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for DeviceProxy_SynchronousProxy
impl Send for DeviceProxy_SynchronousProxy
impl Sync for DeviceProxy_SynchronousProxy
impl Unpin for DeviceProxy_SynchronousProxy
impl UnwindSafe for DeviceProxy_SynchronousProxy
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