pub struct BuildResult {
pub tasks: Vec<TaskResult>,
pub total_duration: Duration,
pub success: bool,
}Expand description
Resultado general de un build.
Fields§
§tasks: Vec<TaskResult>Resultados de cada tarea individual
total_duration: DurationTiempo total
success: boolSi el build fue exitoso
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BuildResult
impl RefUnwindSafe for BuildResult
impl Send for BuildResult
impl Sync for BuildResult
impl Unpin for BuildResult
impl UnsafeUnpin for BuildResult
impl UnwindSafe for BuildResult
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