pub struct BuildProgress {
pub phase: BuildPhase,
pub progress: f32,
pub current_operation: String,
pub elapsed_seconds: u64,
pub remaining_seconds: Option<u64>,
pub phase_details: HashMap<String, Value>,
}Expand description
Build progress information
Fields§
§phase: BuildPhaseCurrent build phase
progress: f32Progress percentage (0.0 - 1.0)
current_operation: StringCurrent operation description
elapsed_seconds: u64Elapsed time in seconds
remaining_seconds: Option<u64>Estimated remaining time in seconds
phase_details: HashMap<String, Value>Phase-specific details
Trait Implementations§
Source§impl Clone for BuildProgress
impl Clone for BuildProgress
Source§fn clone(&self) -> BuildProgress
fn clone(&self) -> BuildProgress
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BuildProgress
impl Debug for BuildProgress
Source§impl<'de> Deserialize<'de> for BuildProgress
impl<'de> Deserialize<'de> for BuildProgress
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BuildProgress
impl RefUnwindSafe for BuildProgress
impl Send for BuildProgress
impl Sync for BuildProgress
impl Unpin for BuildProgress
impl UnsafeUnpin for BuildProgress
impl UnwindSafe for BuildProgress
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