udp 3.1.0

A lightweight and efficient Rust library for building UDP servers with request-response handling.
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Represents data captured from a panic.
///
/// This structure holds information about a panic that occurred during
/// request processing, including the panic message and location if available.
#[derive(Clone, Debug)]
pub struct PanicData {
    /// The panic message.
    pub(super) message: String,
    /// The location where the panic occurred (file and line).
    pub(super) location: Option<String>,
}