LspResult

Type Alias LspResult 

Source
pub type LspResult<T> = Result<T, LspError>;
Expand description

Result type for LSP operations

Aliased Type§

pub enum LspResult<T> {
    Ok(T),
    Err(LspError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(LspError)

Contains the error value