spin_world::wasi::filesystem0_2_0::preopens

Trait Host

Source
pub trait Host: Send {
    // Required method
    fn get_directories<'life0, 'async_trait>(
        &'life0 mut self,
    ) -> Pin<Box<dyn Future<Output = Result<Vec<(Resource<Descriptor>, String)>>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn get_directories<'life0, 'async_trait>( &'life0 mut self, ) -> Pin<Box<dyn Future<Output = Result<Vec<(Resource<Descriptor>, String)>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Return the set of preopened directories, and their path.

Implementations on Foreign Types§

Source§

impl<_T: Host + ?Sized + Send> Host for &mut _T

Source§

fn get_directories<'life0, 'async_trait>( &'life0 mut self, ) -> Pin<Box<dyn Future<Output = Result<Vec<(Resource<Descriptor>, String)>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Return the set of preopened directories, and their path.

Implementors§