pub struct DotConfig {
pub include_addresses: bool,
pub color_by_type: bool,
pub show_call_counts: bool,
pub cluster_by_module: bool,
pub max_nodes: Option<usize>,
}Expand description
Configuration for DOT export
Fields§
§include_addresses: boolInclude function addresses in labels
color_by_type: boolColor nodes by type
show_call_counts: boolShow call counts on edges
cluster_by_module: boolCluster nodes by module
max_nodes: Option<usize>Maximum number of nodes to include
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DotConfig
impl RefUnwindSafe for DotConfig
impl Send for DotConfig
impl Sync for DotConfig
impl Unpin for DotConfig
impl UnwindSafe for DotConfig
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