pub struct ParseStatistics {
pub text_length: usize,
pub image_count: usize,
pub table_count: usize,
pub chart_count: usize,
pub section_count: usize,
pub page_count: usize,
}Expand description
Parsing statistics
Fields§
§text_length: usizeTotal text length
image_count: usizeImage count
table_count: usizeTable count
chart_count: usizeChart count
section_count: usizeSection count
page_count: usizePage count
Trait Implementations§
Source§impl Clone for ParseStatistics
impl Clone for ParseStatistics
Source§fn clone(&self) -> ParseStatistics
fn clone(&self) -> ParseStatistics
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 ParseStatistics
impl Debug for ParseStatistics
Source§impl<'de> Deserialize<'de> for ParseStatistics
impl<'de> Deserialize<'de> for ParseStatistics
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 ParseStatistics
impl RefUnwindSafe for ParseStatistics
impl Send for ParseStatistics
impl Sync for ParseStatistics
impl Unpin for ParseStatistics
impl UnwindSafe for ParseStatistics
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