Struct fidl_fuchsia_net_mdns::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_host_name(
&self,
host: &str,
timeout: i64,
) -> QueryResponseFut<(Option<Box<Ipv4Address>>, Option<Box<Ipv6Address>>), DefaultFuchsiaResourceDialect>
pub fn resolve_host_name( &self, host: &str, timeout: i64, ) -> QueryResponseFut<(Option<Box<Ipv4Address>>, Option<Box<Ipv6Address>>), DefaultFuchsiaResourceDialect>
Gets the addresses for the specified host. timeout
specifies how long
the service should wait before giving up when waiting for a response to
a resolution query. In typical use, a timeout of two or three seconds
is recommended.
A successful resolution may return one or both addresses. An unsuccessful resolution is indicated when both addresses are null.
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 ResolveHostNameResponseFut = QueryResponseFut<(Option<Box<Ipv4Address>>, Option<Box<Ipv6Address>>)>
fn resolve_host_name( &self, host: &str, timeout: i64, ) -> Self::ResolveHostNameResponseFut
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
)