pub struct VerificationResult {
pub passed: bool,
pub exit_code: i32,
pub expected_exit_code: i32,
pub stdout: String,
pub stderr: String,
}Expand description
Result of running a verification command.
Fields§
§passed: boolWhether verification passed (exit code matched expected).
exit_code: i32Actual exit code from the command.
expected_exit_code: i32Expected exit code for success.
stdout: StringStdout output from the command.
stderr: StringStderr output from the command.
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 · 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