pub struct StatusWidget<'a> {
pub theme: &'a Theme,
pub working_dir: &'a str,
pub hostname: &'a str,
pub username: &'a str,
pub context_usage: Option<&'a ContextUsageSnapshot>,
pub last_usage: Option<TokenUsageTotals>,
pub session_usage: TokenUsageTotals,
pub model_name: &'a str,
pub reasoning_level: ReasoningLevel,
pub requested_level: Option<ReasoningLevel>,
pub safety_mode: SafetyMode,
}Expand description
Props for StatusWidget (stateless widget)
Fields§
§theme: &'a Theme§working_dir: &'a str§hostname: &'a strHostname + username for the user@host:cwd line, resolved once at
startup and threaded in (#55) rather than read from the environment on
every frame.
username: &'a str§context_usage: Option<&'a ContextUsageSnapshot>§last_usage: Option<TokenUsageTotals>§session_usage: TokenUsageTotals§model_name: &'a str§reasoning_level: ReasoningLevelEffective reasoning depth — what the API actually saw after
nearest_effort snapping against the model’s capabilities. Always
rendered on line 2 left.
requested_level: Option<ReasoningLevel>User-requested level when it differs from reasoning_level (the
snap case). Some(requested) shows reasoning: high (max requested); None shows just reasoning: high.
safety_mode: SafetyModeLive session safety mode. Rendered on line 2 left so the active
permission level is always visible (Shift+Tab / /safety change it).
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for StatusWidget<'a>
impl<'a> RefUnwindSafe for StatusWidget<'a>
impl<'a> Send for StatusWidget<'a>
impl<'a> Sync for StatusWidget<'a>
impl<'a> Unpin for StatusWidget<'a>
impl<'a> UnsafeUnpin for StatusWidget<'a>
impl<'a> UnwindSafe for StatusWidget<'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