Trait lance_core::io::Writer

source ·
pub trait Writer: AsyncWrite + Unpin + Send {
    // Required method
    fn tell(&self) -> usize;
}
Expand description

A trait for writing to a file on local file system or object store.

Required Methods§

source

fn tell(&self) -> usize

Tell the current offset.

Implementors§