Skip to main content

ElementExt

Trait ElementExt 

Source
pub trait ElementExt: ElementRepr {
    // Provided methods
    fn render_loop(
        &mut self,
        options: TerminalOptions,
    ) -> impl Future<Output = Result<()>> { ... }
    fn fullscreen(&mut self) -> impl Future<Output = Result<()>> { ... }
}

Provided Methods§

Source

fn render_loop( &mut self, options: TerminalOptions, ) -> impl Future<Output = Result<()>>

Source

fn fullscreen(&mut self) -> impl Future<Output = Result<()>>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> ElementExt for T
where T: ElementRepr,