codetether-agent 4.5.7

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Result type returned by [`super::entries::append_entries`].

/// Result of the entry-append pass.
///
/// Carries the maximum scroll offset across all tool activity panels
/// so the outer layer can clamp the tool-preview scroll.
///
/// # Examples
///
/// ```rust
/// use codetether_agent::tui::ui::chat_view::entry_result::EntryAppendResult;
/// let result = EntryAppendResult { tool_preview_max_scroll: 42 };
/// assert_eq!(result.tool_preview_max_scroll, 42);
/// ```
pub struct EntryAppendResult {
    /// Largest scroll offset found in tool activity panels.
    pub tool_preview_max_scroll: usize,
}