| 498 | /// ``` |
| 499 | #[async_trait] |
| 500 | pub trait Manager { |
| 501 | /// The concrete type of the [`Central`] implementation. |
| 502 | type Adapter: Central; |
| 503 | |
| 504 | /// Get a list of all Bluetooth adapters on the system. Each adapter implements [`Central`]. |
| 505 | async fn adapters(&self) -> Result<Vec<Self::Adapter>>; |
| 506 | } |
nothing calls this directly
no outgoing calls
no test coverage detected