pub struct LinkStats {
pub total: usize,
pub internal: usize,
pub external: usize,
pub nofollow: usize,
pub sponsored: usize,
pub ugc: usize,
pub with_title: usize,
pub opens_new_tab: usize,
}Expand description
Count links by type
Fields§
§total: usize§internal: usize§external: usize§nofollow: usize§sponsored: usize§ugc: usize§with_title: usize§opens_new_tab: usizeAuto Trait Implementations§
impl Freeze for LinkStats
impl RefUnwindSafe for LinkStats
impl Send for LinkStats
impl Sync for LinkStats
impl Unpin for LinkStats
impl UnsafeUnpin for LinkStats
impl UnwindSafe for LinkStats
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