pub struct OutputFeatureFlags {
pub max_markdown_lines: usize,
pub max_annotations: usize,
pub max_sarif_results: usize,
}Expand description
Domain-level feature flags for rendering output.
Fields§
§max_markdown_lines: usizeMaximum number of uncovered lines rendered in markdown.
max_annotations: usizeMaximum number of GitHub annotations to emit.
max_sarif_results: usizeMaximum number of SARIF results to emit.
Trait Implementations§
Source§impl Clone for OutputFeatureFlags
impl Clone for OutputFeatureFlags
Source§fn clone(&self) -> OutputFeatureFlags
fn clone(&self) -> OutputFeatureFlags
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 OutputFeatureFlags
impl Debug for OutputFeatureFlags
Source§impl Default for OutputFeatureFlags
impl Default for OutputFeatureFlags
Source§impl PartialEq for OutputFeatureFlags
impl PartialEq for OutputFeatureFlags
impl Copy for OutputFeatureFlags
impl Eq for OutputFeatureFlags
impl StructuralPartialEq for OutputFeatureFlags
Auto Trait Implementations§
impl Freeze for OutputFeatureFlags
impl RefUnwindSafe for OutputFeatureFlags
impl Send for OutputFeatureFlags
impl Sync for OutputFeatureFlags
impl Unpin for OutputFeatureFlags
impl UnsafeUnpin for OutputFeatureFlags
impl UnwindSafe for OutputFeatureFlags
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