pub struct IgnoreOptions {
pub show_ignored: bool,
pub show_hidden: bool,
}Expand description
What the explorer shows. Both default to off: the default view should look like the
project, and the agent’s context should not be full of target/ and node_modules/.
Fields§
§show_ignored: boolShow entries matched by an ignore file (rendered dimmed by the widget).
Show dotfiles.
Implementations§
Source§impl IgnoreOptions
impl IgnoreOptions
Trait Implementations§
Source§impl Clone for IgnoreOptions
impl Clone for IgnoreOptions
Source§fn clone(&self) -> IgnoreOptions
fn clone(&self) -> IgnoreOptions
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 moreimpl Copy for IgnoreOptions
Source§impl Debug for IgnoreOptions
impl Debug for IgnoreOptions
Source§impl Default for IgnoreOptions
impl Default for IgnoreOptions
Source§fn default() -> IgnoreOptions
fn default() -> IgnoreOptions
Returns the “default value” for a type. Read more
impl Eq for IgnoreOptions
Source§impl PartialEq for IgnoreOptions
impl PartialEq for IgnoreOptions
impl StructuralPartialEq for IgnoreOptions
Auto Trait Implementations§
impl Freeze for IgnoreOptions
impl RefUnwindSafe for IgnoreOptions
impl Send for IgnoreOptions
impl Sync for IgnoreOptions
impl Unpin for IgnoreOptions
impl UnsafeUnpin for IgnoreOptions
impl UnwindSafe for IgnoreOptions
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