pub struct GraphRow<N> {
pub node: N,
pub glyph: String,
pub message: String,
pub merge: bool,
pub node_line: Vec<NodeLine>,
pub link_line: Option<Vec<LinkLine>>,
pub term_line: Option<Vec<bool>>,
pub pad_lines: Vec<PadLine>,
}
Expand description
An output graph row.
Fields§
§node: N
The name of the node for this row.
glyph: String
The glyph for this node.
message: String
The message for this row.
merge: bool
True if this row is for a merge commit.
node_line: Vec<NodeLine>
The node columns for this row.
link_line: Option<Vec<LinkLine>>
The link columns for this row, if a link row is necessary.
term_line: Option<Vec<bool>>
The location of any terminators, if necessary. Other columns should be filled in with pad lines.
pad_lines: Vec<PadLine>
The pad columns for this row.
Trait Implementations§
Auto Trait Implementations§
impl<N> Freeze for GraphRow<N>where
N: Freeze,
impl<N> RefUnwindSafe for GraphRow<N>where
N: RefUnwindSafe,
impl<N> Send for GraphRow<N>where
N: Send,
impl<N> Sync for GraphRow<N>where
N: Sync,
impl<N> Unpin for GraphRow<N>where
N: Unpin,
impl<N> UnwindSafe for GraphRow<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
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