pub struct TerminalHistory {
pub daemon_started_at_ms: u64,
pub entries: Vec<TerminalEntry>,
pub dropped: u64,
pub journal_skipped_lines: u64,
pub journal_read_errors: u64,
pub journal_write_failures: u64,
}Expand description
Bounded terminal history for one module, oldest retained record first.
Fields§
§daemon_started_at_ms: u64Unix milliseconds at the current daemon’s start; entries may predate it.
entries: Vec<TerminalEntry>§dropped: u64Exits evicted by the current daemon’s ring, possibly recovered from its journal. Not a count of missing exits: expired journal totals are unknown.
journal_skipped_lines: u64Unparseable or incomplete lines across the shared journal, including lines whose module cannot be determined. Zero on older daemons.
journal_read_errors: u64Files that could not be read completely, excluding absent generations.
journal_write_failures: u64Failed journal appends across all modules in the current daemon.
Trait Implementations§
Source§impl Clone for TerminalHistory
impl Clone for TerminalHistory
Source§fn clone(&self) -> TerminalHistory
fn clone(&self) -> TerminalHistory
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TerminalHistory
impl Debug for TerminalHistory
Source§impl<'de> Deserialize<'de> for TerminalHistory
impl<'de> Deserialize<'de> for TerminalHistory
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for TerminalHistory
Source§impl PartialEq for TerminalHistory
impl PartialEq for TerminalHistory
Source§impl Serialize for TerminalHistory
impl Serialize for TerminalHistory
impl StructuralPartialEq for TerminalHistory
Auto Trait Implementations§
impl Freeze for TerminalHistory
impl RefUnwindSafe for TerminalHistory
impl Send for TerminalHistory
impl Sync for TerminalHistory
impl Unpin for TerminalHistory
impl UnsafeUnpin for TerminalHistory
impl UnwindSafe for TerminalHistory
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