pub struct ResolverProxy { /* private fields */ }
Implementations§
source§impl ResolverProxy
impl ResolverProxy
sourcepub fn new(channel: AsyncChannel) -> Self
pub fn new(channel: AsyncChannel) -> Self
Create a new Proxy for fuchsia.component.resolution/Resolver.
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,
component_url: &str,
) -> QueryResponseFut<ResolverResolveResult>
pub fn resolve( &self, component_url: &str, ) -> QueryResponseFut<ResolverResolveResult>
Resolves a component with the given absolute URL.
component_url
is the unescaped URL of the component to resolve.
If successful, returns information about the component that was resolved.
On failure, returns a ResolverError
error.
sourcepub fn resolve_with_context(
&self,
component_url: &str,
context: &Context,
) -> QueryResponseFut<ResolverResolveWithContextResult>
pub fn resolve_with_context( &self, component_url: &str, context: &Context, ) -> QueryResponseFut<ResolverResolveWithContextResult>
Resolves a component with the absolute or relative URL. If relative, the
component will be resolved relative to the supplied context
.
component_url
is the unescaped URL of the component to resolve, the
format of which can be either:
- a fully-qualified absolute component URL; or
- a subpackaged-component reference, prefixed by a URI relative
path to its containing subpackage (for example,
child_package#meta/some_component.cm
)
context
is the resolution_context
of a previously-resolved
Component
, providing the context for resoving a relative URL.
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<Result<Component, ResolverError>>
fn resolve(&self, component_url: &str) -> Self::ResolveResponseFut
type ResolveWithContextResponseFut = QueryResponseFut<Result<Component, ResolverError>>
fn resolve_with_context( &self, component_url: &str, context: &Context, ) -> Self::ResolveWithContextResponseFut
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
)