pub struct LinkEdge {
pub source: String,
pub target: String,
pub label: String,
}Expand description
An edge in the link graph.
Fields§
§source: StringSource file path.
target: StringTarget file path.
label: StringLink text.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LinkEdge
impl<'de> Deserialize<'de> for LinkEdge
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 LinkEdge
impl RefUnwindSafe for LinkEdge
impl Send for LinkEdge
impl Sync for LinkEdge
impl Unpin for LinkEdge
impl UnsafeUnpin for LinkEdge
impl UnwindSafe for LinkEdge
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