pub struct AutoLinkReport {
pub edges_upserted: usize,
pub pairs_considered: usize,
pub scope: String,
pub applied: Vec<AutoLinkSuggestion>,
}Expand description
Report from run_auto_link.
Fields§
§edges_upserted: usizeEdges inserted or updated this run.
pairs_considered: usizeUnique undirected pairs considered.
scope: StringTarget scope description.
applied: Vec<AutoLinkSuggestion>Sample of applied links (up to 50).
Trait Implementations§
Source§impl Clone for AutoLinkReport
impl Clone for AutoLinkReport
Source§fn clone(&self) -> AutoLinkReport
fn clone(&self) -> AutoLinkReport
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 AutoLinkReport
impl Debug for AutoLinkReport
Source§impl<'de> Deserialize<'de> for AutoLinkReport
impl<'de> Deserialize<'de> for AutoLinkReport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AutoLinkReport
impl RefUnwindSafe for AutoLinkReport
impl Send for AutoLinkReport
impl Sync for AutoLinkReport
impl Unpin for AutoLinkReport
impl UnsafeUnpin for AutoLinkReport
impl UnwindSafe for AutoLinkReport
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