pub struct PendingFixupsStats {
pub targets: u32,
pub est_added: u32,
pub est_removed: u32,
}Expand description
Summary of pending fixups for a spec
Fields§
§targets: u32Number of target files with pending changes
est_added: u32Estimated lines to be added
est_removed: u32Estimated lines to be removed
Trait Implementations§
Source§impl Clone for PendingFixupsStats
impl Clone for PendingFixupsStats
Source§fn clone(&self) -> PendingFixupsStats
fn clone(&self) -> PendingFixupsStats
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 PendingFixupsStats
impl Debug for PendingFixupsStats
Source§impl Default for PendingFixupsStats
impl Default for PendingFixupsStats
Source§fn default() -> PendingFixupsStats
fn default() -> PendingFixupsStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PendingFixupsStats
impl<'de> Deserialize<'de> for PendingFixupsStats
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 PendingFixupsStats
impl RefUnwindSafe for PendingFixupsStats
impl Send for PendingFixupsStats
impl Sync for PendingFixupsStats
impl Unpin for PendingFixupsStats
impl UnsafeUnpin for PendingFixupsStats
impl UnwindSafe for PendingFixupsStats
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