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