rf_distributed/
discovery.rs

1pub mod nbr_sensors_setup;
2
3/// This trait represents a discovery strategy for the platform
4pub trait Discovery {
5    /// Discovers the neighbours of the device
6    ///
7    /// # Returns
8    /// A vector containing the ids of the neighbours
9    fn discover_neighbors(&self) -> Vec<i32>;
10}