pub struct ValidateInput {
pub proposal_id: String,
pub execution_success: bool,
pub stdout: String,
pub stderr: String,
}Expand description
Input passed to a ValidatePort implementation during the Validate stage.
Fields§
§proposal_id: StringOpaque proposal identifier from oris-evolution.
execution_success: boolWhether the prior Execute (sandbox) stage succeeded.
stdout: StringCaptured standard output from the sandbox execution.
stderr: StringCaptured standard error from the sandbox execution.
Trait Implementations§
Source§impl Clone for ValidateInput
impl Clone for ValidateInput
Source§fn clone(&self) -> ValidateInput
fn clone(&self) -> ValidateInput
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 moreSource§impl Debug for ValidateInput
impl Debug for ValidateInput
Source§impl Default for ValidateInput
impl Default for ValidateInput
Source§fn default() -> ValidateInput
fn default() -> ValidateInput
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ValidateInput
impl RefUnwindSafe for ValidateInput
impl Send for ValidateInput
impl Sync for ValidateInput
impl Unpin for ValidateInput
impl UnsafeUnpin for ValidateInput
impl UnwindSafe for ValidateInput
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