pub type BrowserResult<T> = Result<T, Box<dyn Error>>;Expand description
Convenience alias for fallible browser operations. All session methods
return this type so callers can propagate errors with ? without boxing
at every call site.
Aliased Type§
pub enum BrowserResult<T> {
Ok(T),
Err(Box<dyn Error>),
}