pub struct Dot<'a, Arg>(pub &'a Graph<Arg>);Expand description
A formatter which can format a graph into the .dot format, useful for debugging and visualization
Tuple Fields§
§0: &'a Graph<Arg>Trait Implementations§
Auto Trait Implementations§
impl<'a, Arg> Freeze for Dot<'a, Arg>
impl<'a, Arg> RefUnwindSafe for Dot<'a, Arg>where
Arg: RefUnwindSafe,
impl<'a, Arg> Send for Dot<'a, Arg>where
Arg: Sync,
impl<'a, Arg> Sync for Dot<'a, Arg>where
Arg: Sync,
impl<'a, Arg> Unpin for Dot<'a, Arg>
impl<'a, Arg> UnwindSafe for Dot<'a, Arg>where
Arg: RefUnwindSafe,
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more