pub struct PrintConfig {
pub colorize: bool,
pub show_permissions: bool,
pub show_size: bool,
pub human_readable: bool,
pub si_units: bool,
pub show_date: bool,
pub time_format: Option<String>,
pub show_type_indicator: bool,
pub no_indent: bool,
pub full_path: bool,
pub no_report: bool,
pub output_format: OutputFormat,
}Expand description
Configuration for tree printing
Fields§
§colorize: bool§show_permissions: bool§show_size: bool§human_readable: bool§si_units: bool§show_date: bool§time_format: Option<String>§show_type_indicator: bool§no_indent: bool§full_path: bool§no_report: bool§output_format: OutputFormatTrait Implementations§
Source§impl Clone for PrintConfig
impl Clone for PrintConfig
Source§fn clone(&self) -> PrintConfig
fn clone(&self) -> PrintConfig
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 moreSource§impl Debug for PrintConfig
impl Debug for PrintConfig
Auto Trait Implementations§
impl Freeze for PrintConfig
impl RefUnwindSafe for PrintConfig
impl Send for PrintConfig
impl Sync for PrintConfig
impl Unpin for PrintConfig
impl UnsafeUnpin for PrintConfig
impl UnwindSafe for PrintConfig
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