pub struct AnchorMatchReport { /* private fields */ }Expand description
Evidence summary for one anchor-placement matching run.
Implementations§
Source§impl AnchorMatchReport
impl AnchorMatchReport
Sourcepub const fn candidate_count(&self) -> usize
pub const fn candidate_count(&self) -> usize
Number of input text candidates.
Sourcepub const fn comparisons(&self) -> u64
pub const fn comparisons(&self) -> u64
Exact fragment-to-target comparisons performed.
Sourcepub fn links(&self) -> &[AnchoredLink]
pub fn links(&self) -> &[AnchoredLink]
Directed links, including links with no qualifying placement.
Sourcepub fn matched_link_count(&self) -> usize
pub fn matched_link_count(&self) -> usize
Number of links with at least one qualifying source placement.
Trait Implementations§
Source§impl Clone for AnchorMatchReport
impl Clone for AnchorMatchReport
Source§fn clone(&self) -> AnchorMatchReport
fn clone(&self) -> AnchorMatchReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AnchorMatchReport
impl Debug for AnchorMatchReport
Source§impl PartialEq for AnchorMatchReport
impl PartialEq for AnchorMatchReport
impl StructuralPartialEq for AnchorMatchReport
Auto Trait Implementations§
impl Freeze for AnchorMatchReport
impl RefUnwindSafe for AnchorMatchReport
impl Send for AnchorMatchReport
impl Sync for AnchorMatchReport
impl Unpin for AnchorMatchReport
impl UnsafeUnpin for AnchorMatchReport
impl UnwindSafe for AnchorMatchReport
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