Hey so, anybody got an idea for what a good solution is here?

I have a driver that's listening on uart through an embedded-io Read trait.
However, I want to be able to turn off the uart when I don't need it to save power.

The normal trick that works for e.g. I2C master (create wrapper that does 'turn on, do transaction, turn off' for each transaction) doesn't work because the uart needs to be turned on for a while and not turn off between reads since it can then miss data.

So... is there a clever way to solve it?
Or am I doomed to create my own Power trait with a turn_on and turn_off function?