pub struct HtmlReportWriter;Expand description
Static HTML report writer.
Trait Implementations§
Source§impl Clone for HtmlReportWriter
impl Clone for HtmlReportWriter
Source§fn clone(&self) -> HtmlReportWriter
fn clone(&self) -> HtmlReportWriter
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 HtmlReportWriter
impl Debug for HtmlReportWriter
Source§impl Default for HtmlReportWriter
impl Default for HtmlReportWriter
Source§fn default() -> HtmlReportWriter
fn default() -> HtmlReportWriter
Returns the “default value” for a type. Read more
Source§impl PartialEq for HtmlReportWriter
impl PartialEq for HtmlReportWriter
Source§fn eq(&self, other: &HtmlReportWriter) -> bool
fn eq(&self, other: &HtmlReportWriter) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl ReportWriter for HtmlReportWriter
impl ReportWriter for HtmlReportWriter
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 HtmlReportWriter
impl Eq for HtmlReportWriter
impl StructuralPartialEq for HtmlReportWriter
Auto Trait Implementations§
impl Freeze for HtmlReportWriter
impl RefUnwindSafe for HtmlReportWriter
impl Send for HtmlReportWriter
impl Sync for HtmlReportWriter
impl Unpin for HtmlReportWriter
impl UnsafeUnpin for HtmlReportWriter
impl UnwindSafe for HtmlReportWriter
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