Async datagram traits.
Basic usage ```rust use async_datagram::AsyncDatagram; use std::task::{Context, Poll}; use std::pin::Pin;
struct Udp;
impl AsyncDatagram for Udp { type Sender = std::net::SocketAddr; type Receiver = std::net::SocketAddr; type Err = std::io::Error;
fn pollsendto(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &[u8],
target: &Self::Receiver,
) -> Poll
fn pollrecvfrom(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &mut [u8],
) -> Poll
sh
$ cargo add async-datagram
This crate uses #![deny(unsafe_code)]
to ensure everything is implemented in
100% Safe Rust.
Want to join us? Check out our "Contributing" guide and take a look at some of these issues:
None.
MIT OR Apache-2.0