pub struct Config {Show 26 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 zip_expand: bool,
pub zip_password: Option<String>,
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 filter_git: Option<GitFlags>,
pub show_total: bool,
pub show_debug: bool,
pub show_pretty: bool,
pub show_utc: bool,
pub show_owner: bool,
pub show_sig: 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
§zip_expand: bool
§zip_password: Option<String>
§case_sensitive: Option<bool>
§order_files: Vec<OrderKind>
§order_name: bool
§filter_recent: RecentKind
§filter_types: Option<HashSet<FileKind>>
§filter_git: Option<GitFlags>
§show_total: bool
§show_debug: bool
§show_pretty: bool
§show_utc: bool
§show_owner: bool
§show_sig: 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
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