hpx_browser/host.rs
1//! Engine handle for browser control.
2
3/// Handle to the underlying browser engine.
4#[derive(Debug, Clone)]
5pub struct EngineHandle {
6 // ponytail: placeholder for real engine connection
7}
8
9impl EngineHandle {
10 pub fn new() -> Self {
11 Self {}
12 }
13}
14
15impl Default for EngineHandle {
16 fn default() -> Self {
17 Self::new()
18 }
19}