pub struct InstallationResults {
pub installed: Vec<Template>,
pub skipped: Vec<(String, SkippedReason)>,
pub removed: Vec<String>,
}Expand description
The results of installing a set of templates.
Fields§
§installed: Vec<Template>The templates that were installed during the install operation.
skipped: Vec<(String, SkippedReason)>The templates that were skipped during the install operation.
removed: Vec<String>The templates that were removed during the install operation.
Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for InstallationResults
impl !UnwindSafe for InstallationResults
impl Freeze for InstallationResults
impl Send for InstallationResults
impl Sync for InstallationResults
impl Unpin for InstallationResults
impl UnsafeUnpin for InstallationResults
Blanket Implementations§
impl<T> Any for Twhere
T: Any,
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
impl<T> ErasedDestructor for Twhere
T: 'static,
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