Struct piston::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.
Implementations
impl NoWindow
[src]
pub fn new(settings: &WindowSettings) -> NoWindow
[src]
Creates a new NoWindow
.
Trait Implementations
impl AdvancedWindow for NoWindow
[src]
pub fn get_title(&self) -> String
[src]
pub fn set_title(&mut self, value: String)
[src]
pub fn get_exit_on_esc(&self) -> bool
[src]
pub fn set_exit_on_esc(&mut self, _value: bool)
[src]
pub fn get_automatic_close(&self) -> bool
[src]
pub fn set_automatic_close(&mut self, value: bool)
[src]
pub fn set_capture_cursor(&mut self, _value: bool)
[src]
pub fn show(&mut self)
[src]
pub fn hide(&mut self)
[src]
pub fn get_position(&self) -> Option<Position>
[src]
pub fn set_position<P>(&mut self, val: P) where
P: Into<Position>,
[src]
P: Into<Position>,
pub fn set_size<S>(&mut self, val: S) where
S: Into<Size>,
[src]
S: Into<Size>,
pub fn title(self, value: String) -> Self
[src]
pub fn exit_on_esc(self, value: bool) -> Self
[src]
pub fn automatic_close(self, value: bool) -> Self
[src]
pub fn capture_cursor(self, value: bool) -> Self
[src]
pub fn position<P>(self, val: P) -> Self where
P: Into<Position>,
[src]
P: Into<Position>,
impl BuildFromWindowSettings for NoWindow
[src]
pub fn build_from_window_settings(
settings: &WindowSettings
) -> Result<NoWindow, Box<dyn Error + 'static, Global>>
[src]
settings: &WindowSettings
) -> Result<NoWindow, Box<dyn Error + 'static, Global>>
Errors
This function will always return without error.
impl Window for NoWindow
[src]
pub fn should_close(&self) -> bool
[src]
pub fn set_should_close(&mut self, value: bool)
[src]
pub fn size(&self) -> Size
[src]
pub fn swap_buffers(&mut self)
[src]
pub fn wait_event(&mut self) -> Event
[src]
pub fn wait_event_timeout(&mut self, _timeout: Duration) -> Option<Event>
[src]
pub fn poll_event(&mut self) -> Option<Event>
[src]
pub fn draw_size(&self) -> Size
[src]
Auto Trait Implementations
impl RefUnwindSafe for NoWindow
impl Send for NoWindow
impl Sync for NoWindow
impl Unpin for NoWindow
impl UnwindSafe for NoWindow
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,