shell-cell 1.6.2

Shell-Cell. CLI app to spawn and manage containerized shell environments
1
2
3
4
5
6
7
8
9
10
11
mod ui;

use crate::cli::ls::app::ls::LsState;

/// Holds the state when a background operation (stop/remove) has failed.
pub struct ErrorWindowState<Item> {
    /// The list state to restore when the error is dismissed.
    pub ls_state: LsState<Item>,
    /// The error message to display.
    pub message: String,
}