#[non_exhaustive]pub enum GraphCollapse {
FolderDepth(FolderDepthCollapse),
Pattern(PatternCollapse),
}Expand description
One strategy for relabeling report nodes before edge aggregation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
FolderDepth(FolderDepthCollapse)
Retain a fixed number of leading containing-folder components.
Pattern(PatternCollapse)
Apply a regular-expression capture replacement.
Trait Implementations§
Source§impl Clone for GraphCollapse
impl Clone for GraphCollapse
Source§fn clone(&self) -> GraphCollapse
fn clone(&self) -> GraphCollapse
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for GraphCollapse
impl RefUnwindSafe for GraphCollapse
impl Send for GraphCollapse
impl Sync for GraphCollapse
impl Unpin for GraphCollapse
impl UnwindSafe for GraphCollapse
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