pub struct EdgeList {
pub edges: Vec<(NodeId, NodeId, f32)>,
pub node_ids: Vec<NodeId>,
}Fields§
§edges: Vec<(NodeId, NodeId, f32)>§node_ids: Vec<NodeId>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EdgeList
impl RefUnwindSafe for EdgeList
impl Send for EdgeList
impl Sync for EdgeList
impl Unpin for EdgeList
impl UnsafeUnpin for EdgeList
impl UnwindSafe for EdgeList
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