#[repr(C)]pub struct EdgeDeployState {
pub builds_completed: u64,
pub build_failures: u64,
pub target_hash: u32,
pub last_build_ns: u64,
}Expand description
Live state metrics for the edge deployment process.
Fields§
§builds_completed: u64Total edge builds completed successfully.
build_failures: u64Total build failures.
target_hash: u32FxHash of the most recent target binary hash (0 if none built).
last_build_ns: u64Timestamp (ns) of the most recent successful build (0 if none).
Trait Implementations§
Source§impl Clone for EdgeDeployState
impl Clone for EdgeDeployState
Source§fn clone(&self) -> EdgeDeployState
fn clone(&self) -> EdgeDeployState
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 EdgeDeployState
impl Debug for EdgeDeployState
Source§impl Default for EdgeDeployState
impl Default for EdgeDeployState
impl Copy for EdgeDeployState
Auto Trait Implementations§
impl Freeze for EdgeDeployState
impl RefUnwindSafe for EdgeDeployState
impl Send for EdgeDeployState
impl Sync for EdgeDeployState
impl Unpin for EdgeDeployState
impl UnsafeUnpin for EdgeDeployState
impl UnwindSafe for EdgeDeployState
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