pub struct DiffStat {
pub path: String,
pub additions: usize,
pub deletions: usize,
pub status: FileStatus,
}Expand description
Stat summary for a file
Fields§
§path: String§additions: usize§deletions: usize§status: FileStatusTrait Implementations§
Source§impl<'de> Deserialize<'de> for DiffStat
impl<'de> Deserialize<'de> for DiffStat
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 DiffStat
impl RefUnwindSafe for DiffStat
impl Send for DiffStat
impl Sync for DiffStat
impl Unpin for DiffStat
impl UnsafeUnpin for DiffStat
impl UnwindSafe for DiffStat
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