pub struct GraphRow {Show 13 fields
pub hash: String,
pub short_hash: String,
pub parents: Vec<String>,
pub author_name: String,
pub author_email: String,
pub authored_unix: i64,
pub committed_unix: i64,
pub subject: String,
pub body: String,
pub refs: Vec<GitRef>,
pub lane: usize,
pub active_lane_count: usize,
pub edges: Vec<GraphEdge>,
}Fields§
§hash: String§short_hash: String§parents: Vec<String>§committed_unix: i64§subject: String§body: String§refs: Vec<GitRef>§lane: usize§active_lane_count: usize§edges: Vec<GraphEdge>Trait Implementations§
Source§impl<'de> Deserialize<'de> for GraphRow
impl<'de> Deserialize<'de> for GraphRow
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for GraphRow
impl StructuralPartialEq for GraphRow
Auto Trait Implementations§
impl Freeze for GraphRow
impl RefUnwindSafe for GraphRow
impl Send for GraphRow
impl Sync for GraphRow
impl Unpin for GraphRow
impl UnsafeUnpin for GraphRow
impl UnwindSafe for GraphRow
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