pub struct DryRunSummary {
pub files_created: usize,
pub files_modified: usize,
pub files_deleted: usize,
pub packages_installed: usize,
pub packages_removed: usize,
pub services_enabled: usize,
pub users_modified: usize,
pub steps_would_fail: usize,
}Expand description
Summary of dry-run changes
Fields§
§files_created: usizeNumber of files to be created
files_modified: usizeNumber of files to be modified
files_deleted: usizeNumber of files to be deleted
packages_installed: usizeNumber of packages to be installed
packages_removed: usizeNumber of packages to be removed
services_enabled: usizeNumber of services to be enabled
users_modified: usizeNumber of users to be modified
steps_would_fail: usizeNumber of steps that would fail
Implementations§
Source§impl DryRunSummary
impl DryRunSummary
Trait Implementations§
Source§impl Clone for DryRunSummary
impl Clone for DryRunSummary
Source§fn clone(&self) -> DryRunSummary
fn clone(&self) -> DryRunSummary
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 DryRunSummary
impl Debug for DryRunSummary
Source§impl Default for DryRunSummary
impl Default for DryRunSummary
Source§fn default() -> DryRunSummary
fn default() -> DryRunSummary
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DryRunSummary
impl RefUnwindSafe for DryRunSummary
impl Send for DryRunSummary
impl Sync for DryRunSummary
impl Unpin for DryRunSummary
impl UnwindSafe for DryRunSummary
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more