1use std::ops::Range; 2 3pub struct TextualDiagnostics { 4 pub title: String, 5 pub reports: Vec<Report>, 6} 7 8pub struct Report { 9 pub text: String, 10 pub span: Range<usize>, 11}