pub struct RunReport {
pub proofsheet: String,
pub url: String,
pub seed: u64,
pub locale: String,
pub exact: usize,
pub off_size: usize,
pub failed: usize,
pub elapsed_ms: u128,
pub ok: bool,
pub results: Vec<DeviceResult>,
}Expand description
The manifest a run produces.
Fields§
§proofsheet: String§url: String§seed: u64§locale: String§exact: usize§off_size: usize§failed: usize§elapsed_ms: u128§ok: boolTrue only when at least one capture happened and none went wrong.
results: Vec<DeviceResult>Trait Implementations§
Source§impl<'de> Deserialize<'de> for RunReport
impl<'de> Deserialize<'de> for RunReport
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 RunReport
impl RefUnwindSafe for RunReport
impl Send for RunReport
impl Sync for RunReport
impl Unpin for RunReport
impl UnsafeUnpin for RunReport
impl UnwindSafe for RunReport
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