pub type SharedBrowserPool = Arc<Mutex<BrowserPool>>;
Shared browser pool type for web frameworks.
This is the recommended type for sharing a pool across web handlers.
use html2pdf_api::SharedBrowserPool; let pool: SharedBrowserPool = browser_pool.into_shared();
pub struct SharedBrowserPool { /* private fields */ }