pub(crate) struct IgnoreListReport {
pub(crate) config_path: String,
pub(crate) gitignore_path: String,
pub(crate) gitignore_present: bool,
pub(crate) gitignore_mode: String,
pub(crate) manual_layer_order: String,
pub(crate) exclude_dir_names: Vec<String>,
pub(crate) exclude_path_prefixes: Vec<String>,
}Expand description
Current ProjectAtlas ignore configuration report.
Fields§
§config_path: StringConfig file used for the manual ProjectAtlas ignore layer.
gitignore_path: String.gitignore file that the scanner will honor when it exists.
gitignore_present: boolWhether a .gitignore file currently exists at the project root.
gitignore_mode: StringScanner behavior for .gitignore.
manual_layer_order: StringOrder of the manual ProjectAtlas ignore layer.
exclude_dir_names: Vec<String>Effective directory-name excludes after defaults and config are applied.
exclude_path_prefixes: Vec<String>Effective repository-relative path-prefix excludes.
Trait Implementations§
Source§impl Debug for IgnoreListReport
impl Debug for IgnoreListReport
Auto Trait Implementations§
impl Freeze for IgnoreListReport
impl RefUnwindSafe for IgnoreListReport
impl Send for IgnoreListReport
impl Sync for IgnoreListReport
impl Unpin for IgnoreListReport
impl UnwindSafe for IgnoreListReport
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