Type Alias DetectedFramework

Source
pub type DetectedFramework = DetectedTechnology;
Expand description

Backward compatibility type alias

Aliased Type§

pub struct DetectedFramework {
    pub name: String,
    pub version: Option<String>,
    pub category: TechnologyCategory,
    pub confidence: f32,
    pub requires: Vec<String>,
    pub conflicts_with: Vec<String>,
    pub is_primary: bool,
}

Fields§

§name: String§version: Option<String>§category: TechnologyCategory§confidence: f32§requires: Vec<String>

Dependencies this technology requires (e.g., Next.js requires React)

§conflicts_with: Vec<String>

Technologies that conflict with this one (e.g., Tanstack Start conflicts with React Router v7)

§is_primary: bool

Whether this is the primary technology driving the architecture