pub struct ProjectAnalysis {Show 14 fields
    pub project_root: PathBuf,
    pub languages: Vec<DetectedLanguage>,
    pub technologies: Vec<DetectedTechnology>,
    pub frameworks: Vec<DetectedFramework>,
    pub dependencies: DependencyMap,
    pub entry_points: Vec<EntryPoint>,
    pub ports: Vec<Port>,
    pub environment_variables: Vec<EnvVar>,
    pub project_type: ProjectType,
    pub build_scripts: Vec<BuildScript>,
    pub services: Vec<ServiceAnalysis>,
    pub architecture_type: ArchitectureType,
    pub docker_analysis: Option<DockerAnalysis>,
    pub analysis_metadata: AnalysisMetadata,
}Expand description
Enhanced project analysis with proper technology classification and microservice support
Fields§
§project_root: PathBuf§languages: Vec<DetectedLanguage>§technologies: Vec<DetectedTechnology>All detected technologies (frameworks, libraries, tools) with proper classification
frameworks: Vec<DetectedFramework>👎Deprecated: Use technologies field instead
Legacy field for backward compatibility - will be populated from technologies
dependencies: DependencyMap§entry_points: Vec<EntryPoint>§ports: Vec<Port>§environment_variables: Vec<EnvVar>§project_type: ProjectType§build_scripts: Vec<BuildScript>§services: Vec<ServiceAnalysis>Individual service analyses for microservice architectures
architecture_type: ArchitectureTypeWhether this is a monolithic project or microservice architecture
docker_analysis: Option<DockerAnalysis>Docker infrastructure analysis
analysis_metadata: AnalysisMetadataTrait Implementations§
Source§impl Clone for ProjectAnalysis
 
impl Clone for ProjectAnalysis
Source§fn clone(&self) -> ProjectAnalysis
 
fn clone(&self) -> ProjectAnalysis
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 ProjectAnalysis
 
impl Debug for ProjectAnalysis
Source§impl<'de> Deserialize<'de> for ProjectAnalysis
 
impl<'de> Deserialize<'de> for ProjectAnalysis
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
Source§impl PartialEq for ProjectAnalysis
 
impl PartialEq for ProjectAnalysis
Source§impl Serialize for ProjectAnalysis
 
impl Serialize for ProjectAnalysis
impl StructuralPartialEq for ProjectAnalysis
Auto Trait Implementations§
impl Freeze for ProjectAnalysis
impl RefUnwindSafe for ProjectAnalysis
impl Send for ProjectAnalysis
impl Sync for ProjectAnalysis
impl Unpin for ProjectAnalysis
impl UnwindSafe for ProjectAnalysis
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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
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>
Converts 
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>
Converts 
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