pub struct BlameEntry {
pub line_no: usize,
pub commit_id: String,
pub author: String,
pub date: String,
}Fields§
§line_no: usize§commit_id: String§date: StringTrait Implementations§
Source§impl Clone for BlameEntry
impl Clone for BlameEntry
Source§fn clone(&self) -> BlameEntry
fn clone(&self) -> BlameEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for BlameEntry
impl RefUnwindSafe for BlameEntry
impl Send for BlameEntry
impl Sync for BlameEntry
impl Unpin for BlameEntry
impl UnsafeUnpin for BlameEntry
impl UnwindSafe for BlameEntry
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