pub struct LinkGraph {
pub nodes: Vec<LinkNode>,
pub edges: Vec<LinkEdge>,
}Expand description
Link graph data for visualization.
Fields§
§nodes: Vec<LinkNode>Node entries.
edges: Vec<LinkEdge>Edge entries.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LinkGraph
impl<'de> Deserialize<'de> for LinkGraph
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 LinkGraph
impl RefUnwindSafe for LinkGraph
impl Send for LinkGraph
impl Sync for LinkGraph
impl Unpin for LinkGraph
impl UnsafeUnpin for LinkGraph
impl UnwindSafe for LinkGraph
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