//! Stratum V2 pool client handle.
//!//! Construction only records the target URL; connection and mining protocol
//! integration are implemented incrementally.
/// Stratum V2 client (URL-based; connect when mining stack is wired).
#[derive(Debug, Clone)]pubstructStratumV2Client{url: String,
}implStratumV2Client{/// Create a client for the given `tcp://`, `quinn://`, or `iroh://` URL.
pubfnnew(url: String)->Self{Self{ url }}/// Pool / proxy URL this client was constructed with.
pubfnurl(&self)->&str{&self.url
}}