Struct ncurses_rs::window::Window[][src]

pub struct Window {
    pub ptr: *const u64,
    // some fields omitted
}

Fields

the pointer to the actual window in memory

Methods

impl Window
[src]

Create a window and add it to the specified windowing context

Arguments

  • name - the name to register the window under
  • height - the height of the window
  • width - the width of the window
  • x - the starting x coordinate
  • y - the starting y coordinate
  • context - the ncurses context to create a window for

Trait Implementations

impl Drop for Window
[src]

Clean up the window by removing it

Auto Trait Implementations

impl !Send for Window

impl !Sync for Window