pub struct BatchVerifyResult {
pub passed: Vec<String>,
pub failed: Vec<BatchVerifyFailure>,
pub commands_run: usize,
}Expand description
Aggregated result of a batch verify run.
Fields§
§passed: Vec<String>IDs of units whose verify command passed (now Closed).
failed: Vec<BatchVerifyFailure>Per-unit failure details for units that failed verify (returned to Open).
commands_run: usizeNumber of unique verify commands that were executed.
Auto Trait Implementations§
impl Freeze for BatchVerifyResult
impl RefUnwindSafe for BatchVerifyResult
impl Send for BatchVerifyResult
impl Sync for BatchVerifyResult
impl Unpin for BatchVerifyResult
impl UnsafeUnpin for BatchVerifyResult
impl UnwindSafe for BatchVerifyResult
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