pub struct App<'a> {Show 17 fields
pub header: String,
pub state: AppState,
pub selected_tab: SelectedTab,
pub parser: CDParser,
pub filepath: String,
pub crash_dump: CrashDump,
pub index_map: IndexMap,
pub ancestor_map: HashMap<String, Vec<String>>,
pub tab_lists: HashMap<SelectedTab, Vec<String>>,
pub tab_rows: HashMap<SelectedTab, Vec<Row<'a>>>,
pub inspecting_pid: String,
pub inspect_scroll_state: ScrollViewState,
pub table_states: HashMap<SelectedTab, TableState>,
pub process_group_table: Table<'a>,
pub process_view_table: Table<'a>,
pub process_view_state: ProcessViewState,
pub footer_text: HashMap<SelectedTab, String>,
}Expand description
Application.
Fields§
§header: Stringheader
state: AppState§selected_tab: SelectedTab§parser: CDParserparser
filepath: String§crash_dump: CrashDump§index_map: IndexMap§ancestor_map: HashMap<String, Vec<String>>§tab_lists: HashMap<SelectedTab, Vec<String>>process information list
tab_rows: HashMap<SelectedTab, Vec<Row<'a>>>§inspecting_pid: String§inspect_scroll_state: ScrollViewState§table_states: HashMap<SelectedTab, TableState>§process_group_table: Table<'a>§process_view_table: Table<'a>§process_view_state: ProcessViewStateImplementations§
Source§impl App<'_>
impl App<'_>
Source§impl App<'_>
impl App<'_>
pub fn render_tabs(&self, area: Rect, buf: &mut Buffer)
pub fn get_selected_pid(&self) -> String
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for App<'a>
impl<'a> !RefUnwindSafe for App<'a>
impl<'a> Send for App<'a>
impl<'a> Sync for App<'a>
impl<'a> Unpin for App<'a>
impl<'a> UnwindSafe for App<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more