pub struct ApplySummary {
pub attempted: u64,
pub applied: u64,
pub blocked: u64,
pub failed: u64,
pub files_modified: u64,
}Fields§
§attempted: u64§applied: u64§blocked: u64§failed: u64§files_modified: u64Trait Implementations§
Source§impl Clone for ApplySummary
impl Clone for ApplySummary
Source§fn clone(&self) -> ApplySummary
fn clone(&self) -> ApplySummary
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 ApplySummary
impl Debug for ApplySummary
Source§impl Default for ApplySummary
impl Default for ApplySummary
Source§fn default() -> ApplySummary
fn default() -> ApplySummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApplySummary
impl<'de> Deserialize<'de> for ApplySummary
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 ApplySummary
impl RefUnwindSafe for ApplySummary
impl Send for ApplySummary
impl Sync for ApplySummary
impl Unpin for ApplySummary
impl UnsafeUnpin for ApplySummary
impl UnwindSafe for ApplySummary
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