pub struct BuildPlan {
pub steps: Vec<BuildStep>,
pub estimated_time_ms: u64,
}Expand description
A build plan
Fields§
§steps: Vec<BuildStep>Steps to execute in order
estimated_time_ms: u64Estimated total time in ms
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BuildPlan
impl RefUnwindSafe for BuildPlan
impl Send for BuildPlan
impl Sync for BuildPlan
impl Unpin for BuildPlan
impl UnwindSafe for BuildPlan
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