spin_world::wasi::cli0_2_0::terminal_stderr

Trait Host

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

Required Methods§

Source

fn get_terminal_stderr<'life0, 'async_trait>( &'life0 mut self, ) -> Pin<Box<dyn Future<Output = Result<Option<Resource<TerminalOutput>>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

If stderr is connected to a terminal, return a terminal-output handle allowing further interaction with it.

Implementations on Foreign Types§

Source§

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

Source§

fn get_terminal_stderr<'life0, 'async_trait>( &'life0 mut self, ) -> Pin<Box<dyn Future<Output = Result<Option<Resource<TerminalOutput>>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

If stderr is connected to a terminal, return a terminal-output handle allowing further interaction with it.

Implementors§