async-datagram

Crates.ioasync-datagram
lib.rsasync-datagram
version3.0.0
sourcesrc
created_at2019-03-08 00:17:53.657511
updated_at2019-06-24 09:47:58.827113
descriptionAsync datagram traits.
homepage
repositoryhttps://github.com/rustasync/async-datagram
max_upload_size
id119398
size29,419
Yosh (yoshuawuyts)

documentation

https://docs.rs/async-datagram

README

async-datagram

crates.io version build status downloads docs.rs docs

Async datagram traits.

Examples

Basic usage

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 poll_send_to(
    self: Pin<&mut Self>,
    cx: &mut Context<'_>,
    buf: &[u8],
    target: &Self::Receiver,
  ) -> Poll<Result<usize, Self::Err>> {
    Poll::Ready(Ok(0))
  }

  fn poll_recv_from(
    self: Pin<&mut Self>,
    cx: &mut Context<'_>,
    buf: &mut [u8],
  ) -> Poll<Result<(usize, Self::Sender), Self::Err>> {
    Poll::Pending
  }
}

Installation

$ cargo add async-datagram

Safety

This crate uses #![deny(unsafe_code)] to ensure everything is implemented in 100% Safe Rust.

Contributing

Want to join us? Check out our "Contributing" guide and take a look at some of these issues:

References

None.

License

MIT OR Apache-2.0

Commit count: 14

cargo fmt