pub struct PendingFixupsSummary {
pub targets: u32,
pub est_added: u32,
pub est_removed: u32,
}Expand description
Pending fixups summary (counts only, no file contents or diffs)
Fields§
§targets: u32Number of target files with pending fixups
est_added: u32Estimated number of lines to be added
est_removed: u32Estimated number of lines to be removed
Trait Implementations§
Source§impl Clone for PendingFixupsSummary
impl Clone for PendingFixupsSummary
Source§fn clone(&self) -> PendingFixupsSummary
fn clone(&self) -> PendingFixupsSummary
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 PendingFixupsSummary
impl Debug for PendingFixupsSummary
Source§impl<'de> Deserialize<'de> for PendingFixupsSummary
impl<'de> Deserialize<'de> for PendingFixupsSummary
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 PendingFixupsSummary
impl RefUnwindSafe for PendingFixupsSummary
impl Send for PendingFixupsSummary
impl Sync for PendingFixupsSummary
impl Unpin for PendingFixupsSummary
impl UnsafeUnpin for PendingFixupsSummary
impl UnwindSafe for PendingFixupsSummary
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