pub type Result<T> = Result<T, TantivyError>;Expand description
Tantivy result.
Within tantivy, please avoid importing Result using use crate::Result
and instead, refer to this as crate::Result<T>.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(TantivyError),
}