userf_core::context::NbrSensors;/// This trait represent a strategy to setup the neighbouring sensors of the device.
pubtraitNbrSensorSetup{/// Setup the neighbouring sensors of the device.
////// # Arguments
/// * `nbrs` - The ids of the neighbouring sensors.
////// # Returns
/// A map containing the neighbouring sensors.
fnnbr_sensor_setup(&self, nbrs:Vec<i32>)-> NbrSensors;}