browser_window/core/
error.rs

1#[cfg(not(feature = "webkitgtk"))]
2mod c;
3#[cfg(feature = "webkitgtk")]
4mod common;
5
6#[cfg(not(feature = "webkitgtk"))]
7pub use c::Error;
8#[cfg(feature = "webkitgtk")]
9pub use common::Error;
10
11pub type Result<T> = std::result::Result<T, Error>;