pub trait Host: Send {
// Required method
fn get_terminal_stdout<'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§
Sourcefn get_terminal_stdout<'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,
fn get_terminal_stdout<'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 stdout 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
impl<_T: Host + ?Sized + Send> Host for &mut _T
Source§fn get_terminal_stdout<'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,
fn get_terminal_stdout<'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 stdout is connected to a terminal, return a terminal-output
handle
allowing further interaction with it.