pub struct TranscriptResult {
pub path: PathBuf,
pub total: usize,
pub ok: usize,
pub parse_errors: Vec<(usize, String, String)>,
pub roundtrip_errors: Vec<(usize, String, Vec<Diff>)>,
pub io_error: Option<String>,
}Fields§
§path: PathBuf§total: usize§ok: usize§parse_errors: Vec<(usize, String, String)>§roundtrip_errors: Vec<(usize, String, Vec<Diff>)>§io_error: Option<String>Implementations§
Source§impl TranscriptResult
impl TranscriptResult
pub fn has_errors(&self) -> bool
pub fn print_report(&self)
Auto Trait Implementations§
impl Freeze for TranscriptResult
impl RefUnwindSafe for TranscriptResult
impl Send for TranscriptResult
impl Sync for TranscriptResult
impl Unpin for TranscriptResult
impl UnsafeUnpin for TranscriptResult
impl UnwindSafe for TranscriptResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more