pub trait GetFileSize {
// Required method
fn file_size<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<u64, FileError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}