pub struct GitBlameLine {
pub line: u32,
pub commit_hash: String,
pub author: String,
pub date: String,
}Fields§
§line: u32§commit_hash: String§date: StringTrait Implementations§
Source§impl Clone for GitBlameLine
impl Clone for GitBlameLine
Source§fn clone(&self) -> GitBlameLine
fn clone(&self) -> GitBlameLine
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 moreSource§impl Debug for GitBlameLine
impl Debug for GitBlameLine
Source§impl<'de> Deserialize<'de> for GitBlameLine
impl<'de> Deserialize<'de> for GitBlameLine
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
Auto Trait Implementations§
impl Freeze for GitBlameLine
impl RefUnwindSafe for GitBlameLine
impl Send for GitBlameLine
impl Sync for GitBlameLine
impl Unpin for GitBlameLine
impl UnsafeUnpin for GitBlameLine
impl UnwindSafe for GitBlameLine
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