pub type Result<T> = Result<T, SpiderError>;Expand description
A convenience alias so every function in this crate can write Result<T>
instead of std::result::Result<T, SpiderError>. This is re-exported from
the crate root, so downstream code can use scrapling_spider::Result directly.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(SpiderError),
}