pub struct Config {Show 21 fields
pub curr_time: DateTime<Utc>,
pub min_depth: Option<usize>,
pub max_depth: Option<usize>,
pub show_indent: bool,
pub all_files: bool,
pub all_recurse: bool,
pub case_sensitive: Option<bool>,
pub order_files: Vec<OrderKind>,
pub order_name: bool,
pub filter_recent: RecentKind,
pub filter_types: Option<HashSet<FileKind>>,
pub show_total: bool,
pub show_pretty: bool,
pub show_utc: bool,
pub show_owner: bool,
pub only_path: bool,
pub escape_path: bool,
pub null_path: bool,
pub abs_path: bool,
pub completion: Option<Shell>,
pub patterns: Vec<String>,
}Fields§
§curr_time: DateTime<Utc>§min_depth: Option<usize>§max_depth: Option<usize>§show_indent: bool§all_files: bool§all_recurse: bool§case_sensitive: Option<bool>§order_files: Vec<OrderKind>§order_name: bool§filter_recent: RecentKind§filter_types: Option<HashSet<FileKind>>§show_total: bool§show_pretty: bool§show_utc: bool§show_owner: bool§only_path: bool§escape_path: bool§null_path: bool§abs_path: bool§completion: Option<Shell>§patterns: Vec<String>Implementations§
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnwindSafe for Config
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