JamesMunns[m]: ```rust trait PowerManager { type Uart: Read + Write; // e-h-io-async traits fn power_on_create(&mut self) -> Self::Uart; } ``` Then the Uart type is your hal specific impl, that has a lifetime that borrows from the thing that impls PowerManager?