pub struct ReportOverride {
pub columns: ListPatch,
pub card: ListPatch,
pub stats: ListPatch,
pub size: ListPatch,
pub filter: ListPatch,
}Expand description
A language’s overrides of the global report lists. Each field patches the inherited list from the metric catalog; an empty (no-op) patch leaves the global default untouched.
Fields§
§columns: ListPatchThe node-table column order ([report].columns).
card: ListPatchThe card-featured metrics ([report].card).
stats: ListPatchThe JSON report’s aggregate stats keys.
size: ListPatchMetrics the SVG map offers as circle-size modes (ui.size), on top
of the built-in loc / hk modes.
filter: ListPatchMetrics the SVG map offers as on/off node filters (ui.filter) —
keep only nodes where the metric has signal — alongside the built-in cycle.
Trait Implementations§
Source§impl Clone for ReportOverride
impl Clone for ReportOverride
Source§fn clone(&self) -> ReportOverride
fn clone(&self) -> ReportOverride
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 ReportOverride
impl Debug for ReportOverride
Source§impl Default for ReportOverride
impl Default for ReportOverride
Source§fn default() -> ReportOverride
fn default() -> ReportOverride
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ReportOverride
impl RefUnwindSafe for ReportOverride
impl Send for ReportOverride
impl Sync for ReportOverride
impl Unpin for ReportOverride
impl UnsafeUnpin for ReportOverride
impl UnwindSafe for ReportOverride
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