pub trait WindowExt {
    fn move_window(&self, position: Position) -> Result<()>;
}
Expand description

A Window extension that provides extra methods related to positioning.

Required methods

Moves the Window to the given Position

All positions are relative to the current screen.

Implementations on Foreign Types

Implementors