miniblink 0.4.0

Rust bindings to mininlink49
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::ffi::c_void;

/// The web frame handle.
pub struct WebFrameHandle {
    pub(crate) inner: *mut c_void,
}

unsafe impl Send for WebFrameHandle {}

impl WebFrameHandle {
    pub(crate) fn as_ptr(&self) -> *mut c_void {
        self.inner
    }
}