pub struct VisualGraph {
pub nodes: Vec<VisualNode>,
pub edges: Vec<VisualEdge>,
}Fields§
§nodes: Vec<VisualNode>§edges: Vec<VisualEdge>Implementations§
Source§impl VisualGraph
impl VisualGraph
Trait Implementations§
Source§impl Clone for VisualGraph
impl Clone for VisualGraph
Source§fn clone(&self) -> VisualGraph
fn clone(&self) -> VisualGraph
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 moreAuto Trait Implementations§
impl Freeze for VisualGraph
impl RefUnwindSafe for VisualGraph
impl Send for VisualGraph
impl Sync for VisualGraph
impl Unpin for VisualGraph
impl UnsafeUnpin for VisualGraph
impl UnwindSafe for VisualGraph
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