pub type TspResult<T> = Result<T, TspError>;
Result type alias for TSP operations
pub enum TspResult<T> { Ok(T), Err(TspError), }
Contains the success value
Contains the error value