pub struct TypeAwarePhaseTimings {
pub project_setup: u64,
pub diagnostics: u64,
pub symbol_scan: u64,
}Expand description
Semantic sidecar timings, separated from Fallow’s syntactic pipeline.
Fields§
§project_setup: u64TypeScript API construction and project snapshot selection.
diagnostics: u64TypeScript diagnostics collected before any candidate refinement.
symbol_scan: u64Batched symbol lookup and exact declaration matching.
Trait Implementations§
Source§impl Clone for TypeAwarePhaseTimings
impl Clone for TypeAwarePhaseTimings
Source§impl Debug for TypeAwarePhaseTimings
impl Debug for TypeAwarePhaseTimings
Source§impl Default for TypeAwarePhaseTimings
impl Default for TypeAwarePhaseTimings
Source§impl<'de> Deserialize<'de> for TypeAwarePhaseTimings
impl<'de> Deserialize<'de> for TypeAwarePhaseTimings
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 TypeAwarePhaseTimings
impl RefUnwindSafe for TypeAwarePhaseTimings
impl Send for TypeAwarePhaseTimings
impl Sync for TypeAwarePhaseTimings
impl Unpin for TypeAwarePhaseTimings
impl UnsafeUnpin for TypeAwarePhaseTimings
impl UnwindSafe for TypeAwarePhaseTimings
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