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
Legacy OverviewContext for project overview generation Used by overview.rs to generate MATRIX.md content
Fields§
§project_name: String§project_type: String§directory_structure: String§config_files: Vec<(String, String)>§readme: Option<String>§source_files: Vec<(String, String)>Trait Implementations§
Source§impl Clone for OverviewContext
impl Clone for OverviewContext
Source§fn clone(&self) -> OverviewContext
fn clone(&self) -> OverviewContext
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OverviewContext
impl Debug for OverviewContext
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