pub struct BlameResult {
pub commit: Oid,
pub message: String,
}Expand description
Result of a blame query for a line range.
Fields§
§commit: OidThe commit that last modified this line range.
message: StringShort commit message (first line).
Trait Implementations§
Source§impl Clone for BlameResult
impl Clone for BlameResult
Source§fn clone(&self) -> BlameResult
fn clone(&self) -> BlameResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BlameResult
impl Debug for BlameResult
Source§impl PartialEq for BlameResult
impl PartialEq for BlameResult
impl Eq for BlameResult
impl StructuralPartialEq for BlameResult
Auto Trait Implementations§
impl Freeze for BlameResult
impl RefUnwindSafe for BlameResult
impl Send for BlameResult
impl Sync for BlameResult
impl Unpin for BlameResult
impl UnsafeUnpin for BlameResult
impl UnwindSafe for BlameResult
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