appcui 0.4.8

A feature-rich and cross-platform TUI/CUI framework for Rust, enabling modern terminal-based applications on Windows, Linux, and macOS. Includes built-in UI components like buttons, menus, list views, tree views, checkboxes, and more. Perfect for building fast and interactive CLI tools and text-based interfaces.
Documentation
use crate::system::Handle;

pub (super) struct PositionHelper {
    pub (super) x: i32,
    pub (super) y: i32,
    pub (super) last_handle: Handle<()>,
    pub (super) last_group: u8,
    pub (super) last_group_supports_markers: bool
}
impl PositionHelper {
    pub (super) fn new(x: i32, y: i32) -> Self {
        Self {
            x,
            y,
            last_handle: Handle::None,
            last_group: 0u8,
            last_group_supports_markers: false
        }
    }
}