pub type Result<T> = Result<T, ()>;
A specialized Result type for Sciter host operations.
Result
pub enum Result<T> { Ok(T), Err(()), }
Contains the success value
Contains the error value