pub type IdeResult<T> = Result<T, IdeError>;
Result type for IDE integration operations
pub enum IdeResult<T> { Ok(T), Err(IdeError), }
Contains the success value
Contains the error value