Struct rustfmt_nightly::FormatReport
source · pub struct FormatReport {
pub(crate) internal: Rc<RefCell<(HashMap<FileName, Vec<FormattingError>>, ReportedErrors)>>,
pub(crate) non_formatted_ranges: Vec<(usize, usize)>,
}
Expand description
Reports on any issues that occurred during a run of Rustfmt.
Can be reported to the user using the Display
impl on FormatReportFormatter
.
Fields
internal: Rc<RefCell<(HashMap<FileName, Vec<FormattingError>>, ReportedErrors)>>
non_formatted_ranges: Vec<(usize, usize)>
Implementations
sourceimpl FormatReport
impl FormatReport
pub(crate) fn new() -> FormatReport
pub(crate) fn add_non_formatted_ranges(&mut self, ranges: Vec<(usize, usize)>)
pub(crate) fn append(&self, f: FileName, v: Vec<FormattingError>)
pub(crate) fn track_errors(&self, new_errors: &[FormattingError])
pub(crate) fn add_diff(&mut self)
pub(crate) fn add_macro_format_failure(&mut self)
pub(crate) fn add_parsing_error(&mut self)
pub(crate) fn warning_count(&self) -> usize
sourcepub fn has_warnings(&self) -> bool
pub fn has_warnings(&self) -> bool
Whether any warnings or errors are present in the report.
Trait Implementations
sourceimpl Clone for FormatReport
impl Clone for FormatReport
sourcefn clone(&self) -> FormatReport
fn clone(&self) -> FormatReport
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations
impl !RefUnwindSafe for FormatReport
impl !Send for FormatReport
impl !Sync for FormatReport
impl Unpin for FormatReport
impl !UnwindSafe for FormatReport
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 32 bytes