pub struct HandoffDerived {
pub total_files: usize,
pub total_code: usize,
pub total_lines: usize,
pub total_tokens: usize,
pub lang_count: usize,
pub dominant_lang: String,
pub dominant_pct: f64,
}Expand description
Simplified derived metrics for handoff intelligence.
Fields§
§total_files: usize§total_code: usize§total_lines: usize§total_tokens: usize§lang_count: usize§dominant_lang: String§dominant_pct: f64Trait Implementations§
Source§impl Clone for HandoffDerived
impl Clone for HandoffDerived
Source§fn clone(&self) -> HandoffDerived
fn clone(&self) -> HandoffDerived
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 HandoffDerived
impl Debug for HandoffDerived
Source§impl<'de> Deserialize<'de> for HandoffDerived
impl<'de> Deserialize<'de> for HandoffDerived
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for HandoffDerived
impl RefUnwindSafe for HandoffDerived
impl Send for HandoffDerived
impl Sync for HandoffDerived
impl Unpin for HandoffDerived
impl UnsafeUnpin for HandoffDerived
impl UnwindSafe for HandoffDerived
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