(&self, _address: &PeripheralId)
| 133 | } |
| 134 | |
| 135 | async fn add_peripheral(&self, _address: &PeripheralId) -> Result<Peripheral> { |
| 136 | Err(Error::NotSupported( |
| 137 | "Can't add a Peripheral from a PeripheralId".to_string(), |
| 138 | )) |
| 139 | } |
| 140 | |
| 141 | async fn clear_peripherals(&self) -> Result<()> { |
| 142 | self.manager.clear_peripherals(); |