pub struct Config {
pub show_lines: bool,
pub show_words: bool,
pub show_chars: bool,
pub show_bytes: bool,
pub show_max_line_length: bool,
pub show_headings: bool,
pub human_readable: bool,
pub jobs: Option<usize>,
pub sort_by: Option<SortBy>,
pub sort_order: SortOrder,
pub globs: Vec<String>,
pub files: Vec<String>,
}Fields§
§show_lines: bool§show_words: bool§show_chars: bool§show_bytes: bool§show_max_line_length: bool§show_headings: bool§human_readable: bool§jobs: Option<usize>§sort_by: Option<SortBy>§sort_order: SortOrder§globs: Vec<String>§files: Vec<String>Implementations§
Source§impl Config
impl Config
pub fn count_options(&self) -> CountOptions
Trait Implementations§
impl Eq for Config
impl StructuralPartialEq for Config
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnsafeUnpin 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