pub type LspResult<T> = Result<T, LspError>;
Result type for LSP operations
pub enum LspResult<T> { Ok(T), Err(LspError), }
Contains the success value
Contains the error value