1#[derive(Debug)] 2pub struct Node { 3 pub id: u128, 4 pub data: Vec<u8>, 5} 6 7impl Node {} 8 9#[cfg(test)] 10mod tests {}