udp-request 0.3.16

A simple UDP request library for sending and receiving UDP packets, designed to handle network communication in Rust applications.
Documentation
1
2
3
4
use crate::*;

/// A type alias for an `Arc<RwLock<T>>`.
pub type ArcRwLock<T> = Arc<RwLock<T>>;