pub enum DotOutputT {
Browser,
SVG(String),
XWindow,
}
Expand description
Valid visualzation modes for show_dot
.
Variants§
Browser
Open as a new tab in the system’s default browser. Recommended for graphs with large number of nodes.
SVG(String)
Save the graph as a SVG file on the filesystem.
XWindow
Open an Xwindow displaying the graph. Recommended for graphs with small number of nodes.
Trait Implementations§
Source§impl Clone for DotOutputT
impl Clone for DotOutputT
Source§fn clone(&self) -> DotOutputT
fn clone(&self) -> DotOutputT
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 moreSource§impl ConvertibleToDotOutputT for DotOutputT
impl ConvertibleToDotOutputT for DotOutputT
fn to_dot_output_t(self) -> DotOutputT
Auto Trait Implementations§
impl Freeze for DotOutputT
impl RefUnwindSafe for DotOutputT
impl Send for DotOutputT
impl Sync for DotOutputT
impl Unpin for DotOutputT
impl UnwindSafe for DotOutputT
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