pub struct MetadataReport {
pub fields: Vec<MetadataField>,
pub warnings: Vec<MetadataWarning>,
}Expand description
Complete metadata report for a document.
Fields§
§fields: Vec<MetadataField>§warnings: Vec<MetadataWarning>Implementations§
Source§impl MetadataReport
impl MetadataReport
pub fn has_warnings(&self) -> bool
Trait Implementations§
Source§impl Clone for MetadataReport
impl Clone for MetadataReport
Source§fn clone(&self) -> MetadataReport
fn clone(&self) -> MetadataReport
Returns a duplicate of the value. Read more
1.0.0 · 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 MetadataReport
impl Debug for MetadataReport
Source§impl Default for MetadataReport
impl Default for MetadataReport
Source§fn default() -> MetadataReport
fn default() -> MetadataReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MetadataReport
impl<'de> Deserialize<'de> for MetadataReport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MetadataReport
impl RefUnwindSafe for MetadataReport
impl Send for MetadataReport
impl Sync for MetadataReport
impl Unpin for MetadataReport
impl UnsafeUnpin for MetadataReport
impl UnwindSafe for MetadataReport
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