pub struct UserbootSynchronousProxy { /* private fields */ }
Implementations§
Source§impl UserbootSynchronousProxy
impl UserbootSynchronousProxy
pub fn new(channel: Channel) -> Self
pub fn into_channel(self) -> Channel
Sourcepub fn wait_for_event(
&self,
deadline: MonotonicInstant,
) -> Result<UserbootEvent, Error>
pub fn wait_for_event( &self, deadline: MonotonicInstant, ) -> Result<UserbootEvent, 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 post_bootfs_files(&self, files: Vec<BootfsFileVmo>) -> Result<(), Error>
pub fn post_bootfs_files(&self, files: Vec<BootfsFileVmo>) -> Result<(), Error>
Posts a set of BootfsFileVmo
that were used for launching the userboot.next=
program and are no longer
available in the big BootfsVmo.
Messages will only become available after the Userboot
protocol client end (userboot’s handle)
has been closed.
Sourcepub fn post_stash_svc(
&self,
stash_svc_endpoint: ServerEnd<SvcStashMarker>,
) -> Result<(), Error>
pub fn post_stash_svc( &self, stash_svc_endpoint: ServerEnd<SvcStashMarker>, ) -> Result<(), Error>
Posts svc_stash
server endpoint. For more information refer to fuchsia.boot.SvcStash
.
Trait Implementations§
Source§impl Debug for UserbootSynchronousProxy
impl Debug for UserbootSynchronousProxy
Source§impl SynchronousProxy for UserbootSynchronousProxy
impl SynchronousProxy for UserbootSynchronousProxy
Source§type Proxy = UserbootProxy
type Proxy = UserbootProxy
The async proxy for the same protocol.
Source§type Protocol = UserbootMarker
type Protocol = UserbootMarker
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 UserbootSynchronousProxy
impl RefUnwindSafe for UserbootSynchronousProxy
impl Send for UserbootSynchronousProxy
impl Sync for UserbootSynchronousProxy
impl Unpin for UserbootSynchronousProxy
impl UnwindSafe for UserbootSynchronousProxy
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