pub struct BuildResults {
pub paths: HashMap<String, String>,
pub errors: HashMap<String, NixError>,
}Expand description
Build results keyed by hostname.
Fields§
§paths: HashMap<String, String>Map of hostname -> built store path.
errors: HashMap<String, NixError>Map of hostname -> build error.
Auto Trait Implementations§
impl Freeze for BuildResults
impl !RefUnwindSafe for BuildResults
impl Send for BuildResults
impl Sync for BuildResults
impl Unpin for BuildResults
impl UnsafeUnpin for BuildResults
impl !UnwindSafe for BuildResults
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