pub struct CodingAgentDimensions {
pub severity: f64,
pub spinning: f64,
pub exploring: f64,
pub production_intensity: f64,
}Expand description
The two-axis feature view of a single ToolSignals.
Fields§
§severity: f64Windowed max error severity in [0, 1].
spinning: f641.0 when a deep turn has no reads, plans, writes, or edits (pure churn).
exploring: f641.0 when a deep turn reads/plans but does not write or edit.
production_intensity: f64Fraction of recent tool ops that produced code (writes + edits).
Trait Implementations§
Source§impl Clone for CodingAgentDimensions
impl Clone for CodingAgentDimensions
Source§fn clone(&self) -> CodingAgentDimensions
fn clone(&self) -> CodingAgentDimensions
Returns a duplicate of the value. Read more
1.0.0 · 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 CodingAgentDimensions
impl Debug for CodingAgentDimensions
Source§impl PartialEq for CodingAgentDimensions
impl PartialEq for CodingAgentDimensions
impl Copy for CodingAgentDimensions
impl StructuralPartialEq for CodingAgentDimensions
Auto Trait Implementations§
impl Freeze for CodingAgentDimensions
impl RefUnwindSafe for CodingAgentDimensions
impl Send for CodingAgentDimensions
impl Sync for CodingAgentDimensions
impl Unpin for CodingAgentDimensions
impl UnsafeUnpin for CodingAgentDimensions
impl UnwindSafe for CodingAgentDimensions
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