Available on crate feature
async-std only.Expand description
Types for async-std runtime
Re-exports§
pub use async_channel as channel;
Structs§
- Net
- Network abstractions for
async-stdruntime - Runtime
- Concrete
RuntimeLiteimplementation based onasync_stdruntime.
Functions§
- lookup
- Similar to
query, however it uses all the default parameters - query
- Looks up a given service, in a domain, waiting at most for a timeout before finishing the query. The results are streamed to a channel. Sends will not block, so clients should make sure to either read or buffer. This method will attempt to stop the query on cancellation.
Type Aliases§
- Server
- A server that can be used with
async-stdruntime