pub struct LinkEdge {
pub source: PageId,
pub target: PageId,
}Expand description
A directed edge in the page link graph.
Fields§
§source: PageIdPage id of the linking page.
target: PageIdPage id of the linked-to page.
Trait Implementations§
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