pub struct PageAnalysis {
pub page_count: usize,
pub page_types: Vec<PageType>,
pub content_distribution: ContentDistribution,
}Fields§
§page_count: usize§page_types: Vec<PageType>§content_distribution: ContentDistributionTrait Implementations§
Source§impl Clone for PageAnalysis
impl Clone for PageAnalysis
Source§fn clone(&self) -> PageAnalysis
fn clone(&self) -> PageAnalysis
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 moreAuto Trait Implementations§
impl Freeze for PageAnalysis
impl RefUnwindSafe for PageAnalysis
impl Send for PageAnalysis
impl Sync for PageAnalysis
impl Unpin for PageAnalysis
impl UnwindSafe for PageAnalysis
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