pub struct ActivationResults {
pub succeeded: Vec<String>,
pub errors: HashMap<String, NixError>,
}Expand description
Activation results keyed by hostname.
Fields§
§succeeded: Vec<String>Hosts that were successfully activated.
errors: HashMap<String, NixError>Map of hostname -> activation error.
Auto Trait Implementations§
impl Freeze for ActivationResults
impl !RefUnwindSafe for ActivationResults
impl Send for ActivationResults
impl Sync for ActivationResults
impl Unpin for ActivationResults
impl UnsafeUnpin for ActivationResults
impl !UnwindSafe for ActivationResults
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