pub(crate) struct EffectiveConfigReport {Show 17 fields
pub(crate) root: Option<String>,
pub(crate) map_path: Option<String>,
pub(crate) nonsource_files_path: Option<String>,
pub(crate) db_path: Option<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: Option<String>Lossless UTF-8 repository root, when one is available.
map_path: Option<String>Lossless UTF-8 generated TOON map path, when one is available.
nonsource_files_path: Option<String>Lossless UTF-8 non-source purpose registry path, when one is available.
db_path: Option<String>Lossless UTF-8 durable SQLite index path, when one is available.
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 UnsafeUnpin 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
§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>
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>
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