hex-patch 1.12.5

HexPatch is a binary patcher and editor with terminal user interface (TUI), it's capable of disassembling instructions and assembling patches. It supports a variety of architectures and file formats. Also, it can edit remote files via SSH.
Documentation
use mlua::{Lua, Scope, Table};
use ratatui::text::Text;

pub struct PopupContext<'app> {
    pub text: &'app mut Text<'static>,
    pub title: &'app mut String,
    pub height: &'app mut usize,
    pub width: &'app mut usize,
}

impl<'app> PopupContext<'app> {
    pub fn new(
        text: &'app mut Text<'static>,
        title: &'app mut String,
        height: &'app mut usize,
        width: &'app mut usize,
    ) -> Self {
        Self {
            text,
            title,
            height,
            width,
        }
    }

    pub fn to_lua<'scope, 'env>(
        &'env mut self,
        lua: &Lua,
        scope: &'scope Scope<'scope, 'env>,
    ) -> Table {
        let table = lua.create_table().unwrap();
        table
            .set(
                "text",
                scope.create_any_userdata_ref_mut(self.text).unwrap(),
            )
            .unwrap();
        table
            .set(
                "title",
                scope.create_any_userdata_ref_mut(self.title).unwrap(),
            )
            .unwrap();
        table
            .set(
                "height",
                scope.create_any_userdata_ref_mut(self.height).unwrap(),
            )
            .unwrap();
        table
            .set(
                "width",
                scope.create_any_userdata_ref_mut(self.width).unwrap(),
            )
            .unwrap();
        table
    }
}