iced_core/window/mode.rs
1/// The mode of a window-based application.
2#[derive(Debug, Clone, Copy, PartialEq, Eq)]
3pub enum Mode {
4 /// The application appears in its own window.
5 Windowed,
6
7 /// The application takes the whole screen of its current monitor.
8 Fullscreen,
9
10 /// The application is hidden
11 Hidden,
12}