pub struct ShellInitRow {
pub target: String,
pub duration_us: u64,
pub duration_label: String,
pub exit_status: i32,
pub status_class: &'static str,
}Expand description
Display row for one entry in a shell-init group.
Fields§
§target: String§duration_us: u64§duration_label: String§exit_status: i32§status_class: &'static str"deployed" (success — rendered green) or "error" (non-zero
source exit). These map directly to existing styles in
crate::render’s theme; using fresh names here would require
theme additions for no UX gain.
Trait Implementations§
Source§impl Clone for ShellInitRow
impl Clone for ShellInitRow
Source§fn clone(&self) -> ShellInitRow
fn clone(&self) -> ShellInitRow
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ShellInitRow
impl Debug for ShellInitRow
Auto Trait Implementations§
impl Freeze for ShellInitRow
impl RefUnwindSafe for ShellInitRow
impl Send for ShellInitRow
impl Sync for ShellInitRow
impl Unpin for ShellInitRow
impl UnsafeUnpin for ShellInitRow
impl UnwindSafe for ShellInitRow
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