tinyudp 0.6.0

A tiny abstraction for UDP.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # tinyudp
//! A tiny abstraction for UDP.

// Internals
mod error;
mod options;
mod sync;

#[cfg(feature = "tokio")]
mod r#async;

// Public interface
pub use error::Error;
pub use options::ReadOptions;
pub use sync::{send, send_and_receive};

#[cfg(feature = "tokio")]
pub use r#async::{send as send_async, send_and_receive as send_and_receive_async};