1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use view::View;
use Printer;

/// Dummy view.
///
/// Doesn't print anything. Minimal size is (1,1).
pub struct DummyView;

impl View for DummyView {
    fn draw(&self, _: &Printer) {}

    fn needs_relayout(&self) -> bool {
        false
    }
}