(&self)
| 375 | } |
| 376 | |
| 377 | fn services(&self) -> BTreeSet<Service> { |
| 378 | self.shared |
| 379 | .ble_services |
| 380 | .iter() |
| 381 | .map(|item| item.value().to_service()) |
| 382 | .collect() |
| 383 | } |
| 384 | |
| 385 | /// Returns true iff we are currently connected to the device. |
| 386 | async fn is_connected(&self) -> Result<bool> { |
nothing calls this directly
no test coverage detected