pub struct ShutdownCodeChanges {
pub files_modified: Vec<String>,
pub lines_added: i64,
pub lines_removed: i64,
}Expand description
Aggregate code change metrics for the session
Fields§
§files_modified: Vec<String>List of file paths that were modified during the session
lines_added: i64Total number of lines added during the session
lines_removed: i64Total number of lines removed during the session
Trait Implementations§
Source§impl Clone for ShutdownCodeChanges
impl Clone for ShutdownCodeChanges
Source§fn clone(&self) -> ShutdownCodeChanges
fn clone(&self) -> ShutdownCodeChanges
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 ShutdownCodeChanges
impl Debug for ShutdownCodeChanges
Source§impl Default for ShutdownCodeChanges
impl Default for ShutdownCodeChanges
Source§fn default() -> ShutdownCodeChanges
fn default() -> ShutdownCodeChanges
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ShutdownCodeChanges
impl<'de> Deserialize<'de> for ShutdownCodeChanges
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 ShutdownCodeChanges
impl RefUnwindSafe for ShutdownCodeChanges
impl Send for ShutdownCodeChanges
impl Sync for ShutdownCodeChanges
impl Unpin for ShutdownCodeChanges
impl UnsafeUnpin for ShutdownCodeChanges
impl UnwindSafe for ShutdownCodeChanges
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