pub struct LinkStats {
pub total: usize,
pub internal: usize,
pub external: usize,
pub nofollow: usize,
pub sponsored: usize,
pub ugc: usize,
pub followable: usize,
pub unique_external_domains: usize,
pub external_domains: Vec<String>,
}Expand description
链接统计信息
Fields§
§total: usize链接总数
internal: usize内部链接数
external: usize外部链接数
nofollow: usizenofollow 链接数
sponsored: usizesponsored 链接数
ugc: usizeugc 链接数
followable: usize可跟随链接数
unique_external_domains: usize唯一外部域名数
external_domains: Vec<String>外部域名列表
Trait Implementations§
Auto 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