pub enum Reason {
RelNofollow,
RelUgc,
RelSponsored,
MetaRobotsNofollow,
XRobotsTagNofollow,
}Expand description
Why a link was not followed.
Variants§
RelNofollow
The link carried rel="nofollow".
RelUgc
The link carried rel="ugc".
RelSponsored
The link carried rel="sponsored".
MetaRobotsNofollow
The page’s robots meta tag carried nofollow or none.
XRobotsTagNofollow
An applicable X-Robots-Tag header carried nofollow or none.
Trait Implementations§
impl Copy for Reason
impl Eq for Reason
impl StructuralPartialEq for Reason
Auto Trait Implementations§
impl Freeze for Reason
impl RefUnwindSafe for Reason
impl Send for Reason
impl Sync for Reason
impl Unpin for Reason
impl UnsafeUnpin for Reason
impl UnwindSafe for Reason
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