pub struct PrintOptions {
pub format: OutputFormat,
pub colored: bool,
pub show_line_numbers: bool,
pub full_paths: bool,
pub clickable_links: bool,
pub base_path: Option<PathBuf>,
pub show_summary: bool,
pub group_by_tag: bool,
}Fields§
§format: OutputFormat§colored: bool§show_line_numbers: bool§full_paths: bool§clickable_links: bool§base_path: Option<PathBuf>§show_summary: bool§group_by_tag: boolTrait Implementations§
Source§impl Clone for PrintOptions
impl Clone for PrintOptions
Source§fn clone(&self) -> PrintOptions
fn clone(&self) -> PrintOptions
Returns a duplicate of the value. Read more
1.0.0 · 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 PrintOptions
impl Debug for PrintOptions
Auto Trait Implementations§
impl Freeze for PrintOptions
impl RefUnwindSafe for PrintOptions
impl Send for PrintOptions
impl Sync for PrintOptions
impl Unpin for PrintOptions
impl UnsafeUnpin for PrintOptions
impl UnwindSafe for PrintOptions
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