Struct fidl_fuchsia_process::ResolverProxy
source · pub struct ResolverProxy { /* private fields */ }
Implementations§
source§impl ResolverProxy
impl ResolverProxy
sourcepub fn take_event_stream(&self) -> ResolverEventStream
pub fn take_event_stream(&self) -> ResolverEventStream
Get a Stream of events from the remote end of the protocol.
§Panics
Panics if the event stream was already taken.
sourcepub fn resolve(
&self,
name: &str,
) -> QueryResponseFut<(i32, Option<Vmo>, Option<ClientEnd<LoaderMarker>>), DefaultFuchsiaResourceDialect>
pub fn resolve( &self, name: &str, ) -> QueryResponseFut<(i32, Option<Vmo>, Option<ClientEnd<LoaderMarker>>), DefaultFuchsiaResourceDialect>
Resolves the given name
to an executable
and an shared library
loader.
If present, the executable
is suitable for use as the executable
property of LaunchInfo
– in particular, it will have ZX_RIGHT_EXECUTE
.
If present, the ldsvc
is suitable for use as the PA_LDSVC_LOADER
handle when launching the process.
For example, the resolver might locate the given name
inside a package
and return the executable binary from the package as well as a shared
library loader scoped to that package.
Trait Implementations§
source§impl Clone for ResolverProxy
impl Clone for ResolverProxy
source§fn clone(&self) -> ResolverProxy
fn clone(&self) -> ResolverProxy
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 Debug for ResolverProxy
impl Debug for ResolverProxy
source§impl Proxy for ResolverProxy
impl Proxy for ResolverProxy
§type Protocol = ResolverMarker
type Protocol = ResolverMarker
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
source§impl ResolverProxyInterface for ResolverProxy
impl ResolverProxyInterface for ResolverProxy
type ResolveResponseFut = QueryResponseFut<(i32, Option<Vmo>, Option<ClientEnd<LoaderMarker>>)>
fn resolve(&self, name: &str) -> Self::ResolveResponseFut
Auto Trait Implementations§
impl Freeze for ResolverProxy
impl !RefUnwindSafe for ResolverProxy
impl Send for ResolverProxy
impl Sync for ResolverProxy
impl Unpin for ResolverProxy
impl !UnwindSafe for ResolverProxy
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)