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