pub struct DistroResult {
pub distro_name: String,
pub outcome: Result<Vec<String>, String>,
}Expand description
Result of configuring or unconfiguring a single distro.
Fields§
§distro_name: StringDistribution name.
outcome: Result<Vec<String>, String>Outcome: Ok with a list of actions taken, or Err with an error message.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DistroResult
impl RefUnwindSafe for DistroResult
impl Send for DistroResult
impl Sync for DistroResult
impl Unpin for DistroResult
impl UnsafeUnpin for DistroResult
impl UnwindSafe for DistroResult
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