pub struct Frame<'a, B: 'a> where
    B: Backend
{ /* private fields */ }
Expand description

Represents a consistent terminal interface for rendering.

Implementations

Terminal size, guaranteed not to change when rendering.

Render a Widget to the current buffer using Widget::render.

Examples
let block = Block::default();
let area = Rect::new(0, 0, 5, 5);
let mut frame = terminal.get_frame();
frame.render_widget(block, area);

Render a StatefulWidget to the current buffer using StatefulWidget::render.

The last argument should be an instance of the StatefulWidget::State associated to the given StatefulWidget.

Examples
let mut state = ListState::default();
state.select(Some(1));
let items = vec![
    ListItem::new("Item 1"),
    ListItem::new("Item 2"),
];
let list = List::new(items);
let area = Rect::new(0, 0, 5, 5);
let mut frame = terminal.get_frame();
frame.render_stateful_widget(list, area, &mut state);

After drawing this frame, make the cursor visible and put it at the specified (x, y) coordinates. If this method is not called, the cursor will be hidden.

Note that this will interfere with calls to Terminal::hide_cursor(), Terminal::show_cursor(), and Terminal::set_cursor(). Pick one of the APIs and stick with it.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.