//! Proxy observer trait for receiving proxy events.
use crateProxyEvent;
/// Observer that receives events from the proxy's inline parser.
///
/// Implementations must be `Send + Sync` because the observer is shared
/// across multiple forwarding tasks. Use interior mutability (e.g.,
/// `Mutex`, `mpsc::Sender`) if you need mutable state.
/// A no-op observer that discards all events.
;