Trait Host

Source
pub trait Host {
    // Required method
    fn get_terminal_stdout(
        &mut self,
    ) -> Result<Option<Resource<TerminalOutput>>>;
}

Required Methods§

Source

fn get_terminal_stdout(&mut self) -> Result<Option<Resource<TerminalOutput>>>

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> Host for &mut _T

Source§

fn get_terminal_stdout(&mut self) -> Result<Option<Resource<TerminalOutput>>>

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

Implementors§