pub trait Writer: AsyncWrite + Unpin + Send { // Required method fn tell(&self) -> usize; }
A trait for writing to a file on local file system or object store.
Tell the current offset.