//! Defines the plugin interface for network request/response processing.
//!
//! This module provides a trait that allows for custom processing of network requests,
//! responses, and errors through a plugin system.
use ;
/// Defines the interface for network request/response plugins.
///
/// This trait provides methods that are called at different stages of a network request:
/// - Before the request is sent
/// - After a response is received
/// - When an error occurs