pub trait FsInspectVolume {
    // Required method
    fn get_volume_data<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = VolumeData> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Trait that Rust filesystems which are multi-volume should implement for each volume.

Required Methods§

source

fn get_volume_data<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = VolumeData> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§