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