pub struct OverviewContext {
pub project_name: String,
pub project_type: String,
pub directory_structure: String,
pub config_files: Vec<(String, String)>,
pub readme: Option<String>,
pub source_files: Vec<(String, String)>,
}Expand description
Project context for overview generation.
Fields§
§project_name: String§project_type: String§directory_structure: String§config_files: Vec<(String, String)>§readme: Option<String>§source_files: Vec<(String, String)>Auto Trait Implementations§
impl Freeze for OverviewContext
impl RefUnwindSafe for OverviewContext
impl Send for OverviewContext
impl Sync for OverviewContext
impl Unpin for OverviewContext
impl UnsafeUnpin for OverviewContext
impl UnwindSafe for OverviewContext
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