pub struct CfgDotConfig {
pub rankdir: String,
pub edge_color: String,
pub node_shape: String,
pub fontname: String,
pub fontsize: String,
pub bgcolor: String,
pub fillcolor: String,
}
Expand description
Configuration options for rendering a DOT graph.
Fields§
§rankdir: String
The direction of the graph layout.
edge_color: String
The color of the edges.
node_shape: String
The shape of the nodes.
fontname: String
The font name of the nodes.
fontsize: String
The font size of the nodes.
bgcolor: String
The background color of the graph.
fillcolor: String
The fill color of the nodes.
Trait Implementations§
Source§impl Debug for CfgDotConfig
impl Debug for CfgDotConfig
Auto Trait Implementations§
impl Freeze for CfgDotConfig
impl RefUnwindSafe for CfgDotConfig
impl Send for CfgDotConfig
impl Sync for CfgDotConfig
impl Unpin for CfgDotConfig
impl UnwindSafe for CfgDotConfig
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