pub struct FileContext {
pub path: PathBuf,
pub file_purpose: FilePurpose,
pub architectural_layer: ArchitecturalLayer,
pub change_impact: ChangeImpact,
pub project_significance: ProjectSignificance,
}Expand description
File-based context and architectural understanding.
Fields§
§path: PathBufPath to the file.
file_purpose: FilePurposePurpose of this file in the project.
architectural_layer: ArchitecturalLayerArchitectural layer this file belongs to.
change_impact: ChangeImpactImpact of changes to this file.
project_significance: ProjectSignificanceSignificance of this file in the project.
Trait Implementations§
Source§impl Clone for FileContext
impl Clone for FileContext
Source§fn clone(&self) -> FileContext
fn clone(&self) -> FileContext
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 FileContext
impl Debug for FileContext
Source§impl<'de> Deserialize<'de> for FileContext
impl<'de> Deserialize<'de> for FileContext
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 FileContext
impl RefUnwindSafe for FileContext
impl Send for FileContext
impl Sync for FileContext
impl Unpin for FileContext
impl UnsafeUnpin for FileContext
impl UnwindSafe for FileContext
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