pub struct EpubValidationReport {
pub xml_valid: bool,
pub files_checked: usize,
pub issues: Vec<EpubValidationIssue>,
}Fields§
§xml_valid: bool§files_checked: usize§issues: Vec<EpubValidationIssue>Trait Implementations§
Source§impl Clone for EpubValidationReport
impl Clone for EpubValidationReport
Source§fn clone(&self) -> EpubValidationReport
fn clone(&self) -> EpubValidationReport
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 EpubValidationReport
impl Debug for EpubValidationReport
impl Eq for EpubValidationReport
Source§impl PartialEq for EpubValidationReport
impl PartialEq for EpubValidationReport
Source§fn eq(&self, other: &EpubValidationReport) -> bool
fn eq(&self, other: &EpubValidationReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EpubValidationReport
Auto Trait Implementations§
impl Freeze for EpubValidationReport
impl RefUnwindSafe for EpubValidationReport
impl Send for EpubValidationReport
impl Sync for EpubValidationReport
impl Unpin for EpubValidationReport
impl UnsafeUnpin for EpubValidationReport
impl UnwindSafe for EpubValidationReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.