pub trait ArrowWriterCloser {
// Required method
fn close<'async_trait>(
self,
) -> Pin<Box<dyn Future<Output = Result<FileMetaData>> + Send + 'async_trait>>
where Self: 'async_trait;
}
pub trait ArrowWriterCloser {
// Required method
fn close<'async_trait>(
self,
) -> Pin<Box<dyn Future<Output = Result<FileMetaData>> + Send + 'async_trait>>
where Self: 'async_trait;
}