Struct window::NoWindow
[−]
[src]
pub struct NoWindow { /* fields omitted */ }
A window without user interface, often used in server event loops.
This structure holds just enough state to return values that were set.
The size can be changed because the event loop does not emit
Render
events when the width or height is zero.
Methods
impl NoWindow
[src]
fn new(settings: &WindowSettings) -> NoWindow
[src]
Creates a new NoWindow
.
Trait Implementations
impl Window for NoWindow
[src]
fn should_close(&self) -> bool
[src]
Returns true if the window should close.
fn set_should_close(&mut self, value: bool)
[src]
Tells the window to close or stay open.
fn size(&self) -> Size
[src]
Gets the size of the window.
fn swap_buffers(&mut self)
[src]
Swaps render buffers. Read more
fn wait_event(&mut self) -> Input
[src]
Wait indefinitely for an input event to be available from the window.
fn wait_event_timeout(&mut self, _timeout: Duration) -> Option<Input>
[src]
Wait for an input event to be available from the window or for the specified timeout to be reached. Read more
fn poll_event(&mut self) -> Option<Input>
[src]
Polls an input event from the window. Read more
fn draw_size(&self) -> Size
[src]
Gets the draw size of the window. Read more
impl BuildFromWindowSettings for NoWindow
[src]
fn build_from_window_settings(settings: &WindowSettings) -> Result<Self, String>
[src]
Errors
This function will always return without error.
impl AdvancedWindow for NoWindow
[src]
fn get_title(&self) -> String
[src]
Gets a copy of the title of the window.
fn set_title(&mut self, value: String)
[src]
Sets the title of the window.
fn get_exit_on_esc(&self) -> bool
[src]
Gets whether to exit when pressing esc. Read more
fn set_exit_on_esc(&mut self, _value: bool)
[src]
Sets whether to exit when pressing esc. Read more
fn set_capture_cursor(&mut self, _value: bool)
[src]
Sets whether to capture/grab the cursor. Read more
fn show(&mut self)
[src]
Shows the window. Read more
fn hide(&mut self)
[src]
Hides the window. Read more
fn get_position(&self) -> Option<Position>
[src]
Gets the position of window. Read more
fn set_position<P: Into<Position>>(&mut self, val: P)
[src]
Sets the position of window. Read more
fn title(self, value: String) -> Self
[src]
Sets title on window. Read more
fn exit_on_esc(self, value: bool) -> Self
[src]
Sets whether to exit when pressing the Esc button. Read more
fn capture_cursor(self, value: bool) -> Self
[src]
Sets whether to capture/grab the cursor. Read more
fn position<P: Into<Position>>(self, val: P) -> Self
[src]
Sets the position of window. Read more