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§
fn render_loop( &mut self, options: TerminalOptions, ) -> impl Future<Output = Result<()>>
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".