pub struct NetMatrixFormatter<P, T, A, N>{ /* private fields */ }Expand description
Write a matrix with all nodes showing the arcs that connect them. This outputs the table in the markdown/org-mode format.
§Example
Given the simple net \(\circ\rightarrow\rule[-1pt]{3pt}{0.75em}\rightarrow\circ\), the matrix is as follows:
| p0 | p1 | t0 | |
|---|---|---|---|
| p0 | ↗︎ | ||
| p1 | |||
| t0 | ↗︎ |
Trait Implementations§
Source§impl<P, T, A, N> Debug for NetMatrixFormatter<P, T, A, N>
impl<P, T, A, N> Debug for NetMatrixFormatter<P, T, A, N>
Source§impl<P, T, A, N> Default for NetMatrixFormatter<P, T, A, N>
impl<P, T, A, N> Default for NetMatrixFormatter<P, T, A, N>
Source§impl<P, T, A, N> NetFormatter for NetMatrixFormatter<P, T, A, N>
impl<P, T, A, N> NetFormatter for NetMatrixFormatter<P, T, A, N>
Auto Trait Implementations§
impl<P, T, A, N> Freeze for NetMatrixFormatter<P, T, A, N>
impl<P, T, A, N> RefUnwindSafe for NetMatrixFormatter<P, T, A, N>where
N: RefUnwindSafe,
impl<P, T, A, N> Send for NetMatrixFormatter<P, T, A, N>where
N: Send,
impl<P, T, A, N> Sync for NetMatrixFormatter<P, T, A, N>where
N: Sync,
impl<P, T, A, N> Unpin for NetMatrixFormatter<P, T, A, N>where
N: Unpin,
impl<P, T, A, N> UnwindSafe for NetMatrixFormatter<P, T, A, N>where
N: UnwindSafe,
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