pub struct DeterminismRun {
pub verdict: DeterminismVerdict,
pub output: String,
}Expand description
Result of running a determinism command execution.
Fields§
§verdict: DeterminismVerdictThe determinism verdict (pass or fail).
output: StringFormatted output text for display.
Implementations§
Trait Implementations§
Source§impl Clone for DeterminismRun
impl Clone for DeterminismRun
Source§fn clone(&self) -> DeterminismRun
fn clone(&self) -> DeterminismRun
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 DeterminismRun
impl RefUnwindSafe for DeterminismRun
impl Send for DeterminismRun
impl Sync for DeterminismRun
impl Unpin for DeterminismRun
impl UnsafeUnpin for DeterminismRun
impl UnwindSafe for DeterminismRun
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