pub struct ValidatorExecution {
pub status: Option<i32>,
pub stdout: String,
pub stderr: String,
}Expand description
Result of spawning the Python validator (mirrors TS ValidatorExecutionResult).
Fields§
§status: Option<i32>Process exit status; None if the process was killed / never started.
stdout: StringCaptured standard output of the validator process.
stderr: StringCaptured standard error; the source of structured issues.
Auto Trait Implementations§
impl Freeze for ValidatorExecution
impl RefUnwindSafe for ValidatorExecution
impl Send for ValidatorExecution
impl Sync for ValidatorExecution
impl Unpin for ValidatorExecution
impl UnsafeUnpin for ValidatorExecution
impl UnwindSafe for ValidatorExecution
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