pub struct TextReportWriter;Expand description
Human-readable text report writer.
Trait Implementations§
Source§impl Clone for TextReportWriter
impl Clone for TextReportWriter
Source§fn clone(&self) -> TextReportWriter
fn clone(&self) -> TextReportWriter
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TextReportWriter
impl Debug for TextReportWriter
Source§impl Default for TextReportWriter
impl Default for TextReportWriter
Source§fn default() -> TextReportWriter
fn default() -> TextReportWriter
Returns the “default value” for a type. Read more
Source§impl PartialEq for TextReportWriter
impl PartialEq for TextReportWriter
Source§fn eq(&self, other: &TextReportWriter) -> bool
fn eq(&self, other: &TextReportWriter) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl ReportWriter for TextReportWriter
impl ReportWriter for TextReportWriter
Source§fn write_report<W: Write>(
&self,
report: &ValidationReport,
out: W,
) -> Result<()>
fn write_report<W: Write>( &self, report: &ValidationReport, out: W, ) -> Result<()>
Writes a single validation report. Read more
Source§fn write_batch<W: Write>(&self, report: &BatchReport, out: W) -> Result<()>
fn write_batch<W: Write>(&self, report: &BatchReport, out: W) -> Result<()>
Writes a batch validation report. Read more
Source§fn write_repair_report<W: Write>(
&self,
report: &RepairReport,
out: W,
) -> Result<()>
fn write_repair_report<W: Write>( &self, report: &RepairReport, out: W, ) -> Result<()>
Writes a single metadata repair report. Read more
Source§fn write_repair_batch<W: Write>(
&self,
report: &RepairBatchReport,
out: W,
) -> Result<()>
fn write_repair_batch<W: Write>( &self, report: &RepairBatchReport, out: W, ) -> Result<()>
Writes a batch metadata repair report. Read more
impl Copy for TextReportWriter
impl Eq for TextReportWriter
impl StructuralPartialEq for TextReportWriter
Auto Trait Implementations§
impl Freeze for TextReportWriter
impl RefUnwindSafe for TextReportWriter
impl Send for TextReportWriter
impl Sync for TextReportWriter
impl Unpin for TextReportWriter
impl UnsafeUnpin for TextReportWriter
impl UnwindSafe for TextReportWriter
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