Skip to main content

CrossLink

Struct CrossLink 

Source
pub struct CrossLink {
    pub from_project: String,
    pub from_key: String,
    pub from_name: String,
    pub kind: String,
    pub confidence: Option<f64>,
    pub to_qualified: String,
    pub resolves: bool,
}
Expand description

One cross-repo edge the workspace vault can actually follow: a spoke’s node linking to a hub’s, through the external-ref placeholder ADR-0009 persists.

Collected by the caller, which has every member’s store open; the renderer only lays them out. Nothing here is a new edge — these are the inferred links roteiro links already reports, rendered for the first time.

Fields§

§from_project: String

The member the edge starts in.

§from_key: String

The source node’s key, within from_project.

§from_name: String

The source node’s display name.

§kind: String

The edge kind (links, …).

§confidence: Option<f64>

Confidence, for an inferred edge.

§to_qualified: String

The project-qualified target, <project>::<key> (ADR-0009).

§resolves: bool

Whether to_qualified’s project is a member of this workspace — and so whether the link resolves to a note in this vault, or dangles because the target repository is outside it.

Trait Implementations§

Source§

fn clone(&self) -> CrossLink

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.