pub struct Revisions {
pub parent_a: String,
pub parent_b: String,
pub merged: String,
}Expand description
Commit identities recorded with one three-worktree observation.
Fields§
§parent_a: StringFirst-parent commit as a canonical full Git object id.
parent_b: StringSecond-parent commit as a canonical full Git object id.
merged: StringSpeculative merge commit as a canonical full Git object id.
Trait Implementations§
impl Eq for Revisions
impl StructuralPartialEq for Revisions
Auto Trait Implementations§
impl Freeze for Revisions
impl RefUnwindSafe for Revisions
impl Send for Revisions
impl Sync for Revisions
impl Unpin for Revisions
impl UnsafeUnpin for Revisions
impl UnwindSafe for Revisions
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