Struct GraphRow

Source
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§

Source§

impl<N: Debug> Debug for GraphRow<N>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.