pub struct VerificationResult {
pub success: bool,
pub local_hash: Option<BinaryHashResult>,
pub remote_hash: Option<BinaryHashResult>,
pub rsync_up_ms: u64,
pub compilation_ms: u64,
pub rsync_down_ms: u64,
pub total_ms: u64,
pub bytes_up: u64,
pub bytes_down: u64,
pub error: Option<String>,
pub change_id: String,
pub marker_verified: bool,
}Expand description
Result of a remote compilation verification.
Fields§
§success: boolWhether the verification succeeded (binaries match).
local_hash: Option<BinaryHashResult>Hash result from the local build.
remote_hash: Option<BinaryHashResult>Hash result from the remote build.
rsync_up_ms: u64Time spent syncing files to the worker (ms).
compilation_ms: u64Time spent on remote compilation (ms).
rsync_down_ms: u64Time spent syncing artifacts back (ms).
total_ms: u64Total time for the entire verification (ms).
bytes_up: u64Bytes transferred to the worker.
bytes_down: u64Bytes transferred from the worker.
error: Option<String>Error message if verification failed.
change_id: StringThe test change ID used for verification.
marker_verified: boolWhether the test marker was found in the binary.
Implementations§
Trait Implementations§
Source§impl Clone for VerificationResult
impl Clone for VerificationResult
Source§fn clone(&self) -> VerificationResult
fn clone(&self) -> VerificationResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for VerificationResult
impl RefUnwindSafe for VerificationResult
impl Send for VerificationResult
impl Sync for VerificationResult
impl Unpin for VerificationResult
impl UnsafeUnpin for VerificationResult
impl UnwindSafe for VerificationResult
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