[`tokio_uring::fs::write_at`](https://docs.rs/tokio-uring/latest/tokio_uring/fs/struct.File.html#method.write_at) tries to write the entire content of buffer but the entire write may fail. It would be nice to schedule retry in that case. This is not the case with [`tokio::io::AsyncWriteExt::write_all`](https://docs.rs/tokio/latest/tokio/io/trait.AsyncWriteExt.html#method.write_all).