Node
Fully qualified path: alexandria_searching::dijkstra::Node
#![allow(unused)] fn main() { #[derive(Copy, Drop)] pub struct Node { source: u32, dest: u32, weight: u128, } }
Fully qualified path: alexandria_searching::dijkstra::Node
#![allow(unused)] fn main() { #[derive(Copy, Drop)] pub struct Node { source: u32, dest: u32, weight: u128, } }