pub struct ProjectContext {
pub project_type: ProjectType,
pub languages: Vec<Language>,
pub frameworks: Vec<Framework>,
pub structure: ProjectStructure,
pub patterns: Vec<DetectedPattern>,
pub dependencies: Vec<Dependency>,
pub architectural_intent: ArchitecturalIntent,
pub standards: StandardsProfile,
}Expand description
Complete context about a project
Fields§
§project_type: ProjectTypeType of project (library, application, service, etc.)
languages: Vec<Language>Languages detected in the project
frameworks: Vec<Framework>Frameworks detected in the project
structure: ProjectStructureProject structure information
patterns: Vec<DetectedPattern>Detected patterns in the codebase
dependencies: Vec<Dependency>Project dependencies
architectural_intent: ArchitecturalIntentArchitectural intent and decisions
standards: StandardsProfileDetected standards and conventions
Trait Implementations§
Source§impl Clone for ProjectContext
impl Clone for ProjectContext
Source§fn clone(&self) -> ProjectContext
fn clone(&self) -> ProjectContext
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 ProjectContext
impl Debug for ProjectContext
Source§impl<'de> Deserialize<'de> for ProjectContext
impl<'de> Deserialize<'de> for ProjectContext
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 ProjectContext
impl RefUnwindSafe for ProjectContext
impl Send for ProjectContext
impl Sync for ProjectContext
impl Unpin for ProjectContext
impl UnwindSafe for ProjectContext
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