pub struct SemanticLinkReport { /* private fields */ }Expand description
Summary of one semantic-linking run.
Implementations§
Source§impl SemanticLinkReport
impl SemanticLinkReport
Sourcepub const fn vector_count(&self) -> usize
pub const fn vector_count(&self) -> usize
Number of input vectors.
Sourcepub const fn comparisons(&self) -> u64
pub const fn comparisons(&self) -> u64
Exact eligible-pair cosine comparisons performed by exhaustive linking.
Sourcepub const fn pair_count(&self) -> usize
pub const fn pair_count(&self) -> usize
Number of distinct unordered endpoint pairs represented by the edges.
Sourcepub const fn candidate_backend(&self) -> CandidateBackend
pub const fn candidate_backend(&self) -> CandidateBackend
Backend used to generate semantic candidates.
Sourcepub const fn edge_count(&self) -> usize
pub const fn edge_count(&self) -> usize
Number of emitted directed graph edges.
Sourcepub fn into_edges(self) -> Vec<Edge>
pub fn into_edges(self) -> Vec<Edge>
Consumes the report and returns its graph edges.
Trait Implementations§
Source§impl Clone for SemanticLinkReport
impl Clone for SemanticLinkReport
Source§fn clone(&self) -> SemanticLinkReport
fn clone(&self) -> SemanticLinkReport
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 SemanticLinkReport
impl Debug for SemanticLinkReport
impl Eq for SemanticLinkReport
Source§impl PartialEq for SemanticLinkReport
impl PartialEq for SemanticLinkReport
impl StructuralPartialEq for SemanticLinkReport
Auto Trait Implementations§
impl Freeze for SemanticLinkReport
impl RefUnwindSafe for SemanticLinkReport
impl Send for SemanticLinkReport
impl Sync for SemanticLinkReport
impl Unpin for SemanticLinkReport
impl UnsafeUnpin for SemanticLinkReport
impl UnwindSafe for SemanticLinkReport
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