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