SharedBrowserPool

Type Alias SharedBrowserPool 

Source
pub type SharedBrowserPool = Arc<Mutex<BrowserPool>>;
Expand description

Shared browser pool type for web frameworks.

This is the recommended type for sharing a pool across web handlers.

§Example

use html2pdf_api::SharedBrowserPool;

let pool: SharedBrowserPool = browser_pool.into_shared();

Aliased Type§

pub struct SharedBrowserPool { /* private fields */ }