pub struct DotGraphVisualizer<'a, NId, NL, EL>{ /* private fields */ }
Implementations§
Source§impl<'a, NId, NL, EL> DotGraphVisualizer<'a, NId, NL, EL>
impl<'a, NId, NL, EL> DotGraphVisualizer<'a, NId, NL, EL>
pub fn str_to_dot_file(&self, path: &str) -> Result<String>
Source§impl<'a, NId, NL, EL> DotGraphVisualizer<'a, NId, NL, EL>
impl<'a, NId, NL, EL> DotGraphVisualizer<'a, NId, NL, EL>
pub fn new(graph: &'a DiGraph<NId, NL, EL>) -> Self
pub fn to_dot<P>(&self, processor: P) -> Graphwhere
P: DotProcessor<'a, NId, NL, EL>,
pub fn to_dot_file<P>(&'a self, path: &str, processor: P) -> Result<String>where
P: DotProcessor<'a, NId, NL, EL>,
Auto Trait Implementations§
impl<'a, NId, NL, EL> Freeze for DotGraphVisualizer<'a, NId, NL, EL>
impl<'a, NId, NL, EL> RefUnwindSafe for DotGraphVisualizer<'a, NId, NL, EL>
impl<'a, NId, NL, EL> Send for DotGraphVisualizer<'a, NId, NL, EL>
impl<'a, NId, NL, EL> Sync for DotGraphVisualizer<'a, NId, NL, EL>
impl<'a, NId, NL, EL> Unpin for DotGraphVisualizer<'a, NId, NL, EL>
impl<'a, NId, NL, EL> UnwindSafe for DotGraphVisualizer<'a, NId, NL, EL>
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