A comprehensive Rust library providing essential types for HTTP operations. Includes core HTTP abstractions (request/response, methods, status codes, versions), content types, cookies, WebSocket support, and thread-safe concurrent types (ArcMutex, ArcRwLock). Also provides convenient Option-wrapped primitive types for flexible HTTP handling.
usecrate::*;/// Represents a decoded WebSocket frame.
#[derive(Debug, Clone, Getter, DisplayDebug, PartialEq, Eq)]pubstructWebSocketFrame{/// FIN flag indicating if this is the final frame.
pub(super) fin:bool,
/// Opcode indicating the frame type (text, binary, etc.).
pub(super) opcode: WebSocketOpcode,
/// Mask flag indicating if the payload is masked.
pub(super) mask:bool,
/// The payload data of the frame.
pub(super) payload_data:Vec<u8>,
}