pub enum IgnoreScope {
Advisory,
Enforced,
}Expand description
Controls which tools respect the ignore configuration.
Variants§
Advisory
Polite tools (glob, tree, grep, ls, expand_glob) respect config.
find remains unrestricted — traditional POSIX behavior.
Enforced
ALL file-walking tools respect config, including find.
Protects agents from context flooding.
Trait Implementations§
Source§impl Clone for IgnoreScope
impl Clone for IgnoreScope
Source§fn clone(&self) -> IgnoreScope
fn clone(&self) -> IgnoreScope
Returns a duplicate of the value. Read more
1.0.0 · 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 IgnoreScope
impl Debug for IgnoreScope
Source§impl PartialEq for IgnoreScope
impl PartialEq for IgnoreScope
impl Copy for IgnoreScope
impl Eq for IgnoreScope
impl StructuralPartialEq for IgnoreScope
Auto Trait Implementations§
impl Freeze for IgnoreScope
impl RefUnwindSafe for IgnoreScope
impl Send for IgnoreScope
impl Sync for IgnoreScope
impl Unpin for IgnoreScope
impl UnsafeUnpin for IgnoreScope
impl UnwindSafe for IgnoreScope
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.