pub trait IsWindow: HasHandle<WINDOW> {
    fn putwin<O: AsRawFd + Write>(
        &self,
        file: &O
    ) -> Result<(), NCurseswWinError> { ... }
fn echochar(&self, ch: ChtypeChar) -> Result<(), NCurseswWinError> { ... }
fn echo_wchar(&self, wch: ComplexChar) -> Result<(), NCurseswWinError> { ... }
fn noutrefresh(&self) -> Result<(), NCurseswWinError> { ... } }
Expand description

is the window canvas type a window.

Provided methods

Implementors