pub struct ProjectAnalysis {
pub project_path: PathBuf,
pub summary: String,
pub discovered_components: HashMap<String, FileInfo>,
pub architecture_patterns: Vec<ArchitectureInsight>,
pub relationships: Vec<ComponentRelationship>,
pub exploration_history: Vec<ExplorationStep>,
pub c4_documentation: C4Documentation,
}
Expand description
项目分析结果
Fields§
§project_path: PathBuf
§summary: String
§discovered_components: HashMap<String, FileInfo>
§architecture_patterns: Vec<ArchitectureInsight>
§relationships: Vec<ComponentRelationship>
§exploration_history: Vec<ExplorationStep>
§c4_documentation: C4Documentation
Trait 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 moreAuto 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