pub struct StatusLine<'a> {
pub agent_name: &'a str,
pub config_options: &'a [SessionConfigOption],
pub context_pct_left: Option<u8>,
pub waiting_for_response: bool,
pub unhealthy_server_count: usize,
pub content_padding: usize,
}Expand description
The bottom status bar showing agent state at a glance.
Renders a single line with left-aligned identity info and right-aligned indicators:
Left side:
- Agent name
- Current mode/profile (if configured)
- Active model name
Right side:
- Reasoning effort bar (visual level indicator)
- Context window usage bar
- Unhealthy MCP server count (when not waiting for a response)
§See also
App— constructs this view each render cycleKeybindings—Tabcycles reasoning,Shift+Tabcycles mode
Fields§
§agent_name: &'a str§config_options: &'a [SessionConfigOption]§context_pct_left: Option<u8>§waiting_for_response: bool§unhealthy_server_count: usize§content_padding: usizeImplementations§
Source§impl StatusLine<'_>
impl StatusLine<'_>
pub fn render(&self, context: &ViewContext) -> Vec<Line>
Auto Trait Implementations§
impl<'a> Freeze for StatusLine<'a>
impl<'a> RefUnwindSafe for StatusLine<'a>
impl<'a> Send for StatusLine<'a>
impl<'a> Sync for StatusLine<'a>
impl<'a> Unpin for StatusLine<'a>
impl<'a> UnsafeUnpin for StatusLine<'a>
impl<'a> UnwindSafe for StatusLine<'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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more