pub struct ProjectContext {
pub name: Option<String>,
pub description: Option<String>,
pub languages: Vec<String>,
pub frameworks: Vec<String>,
pub architecture: Option<String>,
pub directories: HashMap<String, String>,
pub conventions: Vec<String>,
pub entry_points: Vec<String>,
pub test_pattern: Option<String>,
pub build_commands: HashMap<String, String>,
}Expand description
Project context - high-level project information.
Fields§
§name: Option<String>Project name.
description: Option<String>Project description.
languages: Vec<String>Primary language(s).
frameworks: Vec<String>Frameworks/libraries used.
architecture: Option<String>Architecture pattern.
directories: HashMap<String, String>Key directories and their purposes.
conventions: Vec<String>Coding conventions/patterns observed.
entry_points: Vec<String>Entry points.
test_pattern: Option<String>Test patterns.
build_commands: HashMap<String, String>Build commands.
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 Default for ProjectContext
impl Default for ProjectContext
Source§fn default() -> ProjectContext
fn default() -> ProjectContext
Returns the “default value” for a type. Read more
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