pub(crate) struct EffectiveConfigReport {Show 17 fields
pub(crate) root: String,
pub(crate) map_path: String,
pub(crate) nonsource_files_path: String,
pub(crate) db_path: String,
pub(crate) purpose_filename: String,
pub(crate) source_extensions: Vec<String>,
pub(crate) exclude_dir_names: Vec<String>,
pub(crate) exclude_path_prefixes: Vec<String>,
pub(crate) non_source_path_prefixes: Vec<String>,
pub(crate) language_overrides: BTreeMap<String, String>,
pub(crate) purpose_default_style: String,
pub(crate) purpose_styles: BTreeMap<String, String>,
pub(crate) line_comment_prefixes: Vec<String>,
pub(crate) text_index_max_bytes: u64,
pub(crate) summary_max_length: usize,
pub(crate) summary_ascii_only: bool,
pub(crate) summary_no_commas: bool,
}Expand description
Serializable view of the effective ProjectAtlas configuration.
Fields§
§root: StringRepository root.
map_path: StringGenerated TOON map path.
nonsource_files_path: StringNon-source purpose registry path.
db_path: StringDurable SQLite index path.
purpose_filename: StringPurpose metadata filename.
source_extensions: Vec<String>Source extensions treated as indexable project content.
exclude_dir_names: Vec<String>Directory names excluded from normal scans.
exclude_path_prefixes: Vec<String>Repository-relative path prefixes excluded from normal scans.
non_source_path_prefixes: Vec<String>Configured non-source path prefixes.
language_overrides: BTreeMap<String, String>Validated exact-filename or extension language overrides.
purpose_default_style: StringDefault purpose style.
purpose_styles: BTreeMap<String, String>Per-extension purpose style overrides.
line_comment_prefixes: Vec<String>Supported line comment prefixes for purpose headers.
text_index_max_bytes: u64Maximum file size persisted into SQLite text search.
summary_max_length: usizeMaximum purpose line length.
summary_ascii_only: boolWhether purpose summaries must be ASCII.
summary_no_commas: boolWhether purpose summaries may not contain commas.
Trait Implementations§
Source§impl Debug for EffectiveConfigReport
impl Debug for EffectiveConfigReport
Auto Trait Implementations§
impl Freeze for EffectiveConfigReport
impl RefUnwindSafe for EffectiveConfigReport
impl Send for EffectiveConfigReport
impl Sync for EffectiveConfigReport
impl Unpin for EffectiveConfigReport
impl UnwindSafe for EffectiveConfigReport
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more