Expand description
§Extractor
This is a experimental crate for extracting possible inline titles for error searching with resa.
The following example will demonstrate the purpose:
error[E0382]: use of moved value: 'v'
--> examples/fail.rs:4:29
|
3 | let v2 = v;
| -- value moved here
4 | println!("v[0] is: {}\", v[0]);
| ^ value used here after move
|
= note: move occurs because `v` has type `std::vec::Vec<i32>`, which does not implement the `Copy` trait"A compiler error. The extractor crate will search for the inline title use of moved value. To get this sentence
the crate need to filter, split and match regular expressions.
Based on this title we’re able to search e.g on StackOverflow for similar issues.
Functions§
- get_
error_ text_ with_ error_ code - Retuns a Vector of error sentences with error code
- get_
error_ text_ without_ error_ code - Retuns a Vector of error sentences without error code
- structure_
compiler_ output - Returns a Vector of compiler error entries