pub struct StatusWidget<'a> {
pub theme: &'a Theme,
pub working_dir: &'a str,
pub hostname: &'a str,
pub username: &'a str,
pub version: &'a str,
pub context_usage: Option<&'a ContextUsageSnapshot>,
pub model_name: &'a str,
pub reasoning_level: ReasoningLevel,
pub requested_level: Option<ReasoningLevel>,
pub safety_mode: SafetyMode,
pub plan_active: bool,
}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§version: &'a strApp version for the line-2 footer, threaded from RenderCache (like
hostname/username) so the snapshot suite can pin it.
context_usage: Option<&'a ContextUsageSnapshot>§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).
plan_active: boolTrue while the session is drafting a plan: the safety segment reads
plan mode on (alt+p to toggle) - restores: <mode> instead of
safety: <mode>. Never the spinner/status widget (#245 invariant) —
this is the persistent mode line.
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
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>
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>
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