pub struct RecoveryReportOptions {
pub verbose: bool,
pub max_intact_entries: Option<usize>,
}Expand description
Rendering options for RecoveryReport.
Fields§
§verbose: boolInclude individual intact file paths in rendered output.
max_intact_entries: Option<usize>Maximum intact file paths to include when verbose output is enabled.
Trait Implementations§
Source§impl Clone for RecoveryReportOptions
impl Clone for RecoveryReportOptions
Source§fn clone(&self) -> RecoveryReportOptions
fn clone(&self) -> RecoveryReportOptions
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 RecoveryReportOptions
impl Debug for RecoveryReportOptions
Source§impl Default for RecoveryReportOptions
impl Default for RecoveryReportOptions
Source§fn default() -> RecoveryReportOptions
fn default() -> RecoveryReportOptions
Returns the “default value” for a type. Read more
impl Eq for RecoveryReportOptions
Source§impl PartialEq for RecoveryReportOptions
impl PartialEq for RecoveryReportOptions
impl StructuralPartialEq for RecoveryReportOptions
Auto Trait Implementations§
impl Freeze for RecoveryReportOptions
impl RefUnwindSafe for RecoveryReportOptions
impl Send for RecoveryReportOptions
impl Sync for RecoveryReportOptions
impl Unpin for RecoveryReportOptions
impl UnsafeUnpin for RecoveryReportOptions
impl UnwindSafe for RecoveryReportOptions
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