pub struct ValidationCommandRecord {
pub command: String,
pub success: bool,
pub timed_out: bool,
pub status_code: Option<i32>,
pub duration_ms: u64,
pub stdout: String,
pub stderr: String,
}Expand description
Auditable record for a validation command.
Fields§
§command: String§success: bool§timed_out: bool§status_code: Option<i32>§duration_ms: u64§stdout: String§stderr: StringTrait Implementations§
Source§impl Clone for ValidationCommandRecord
impl Clone for ValidationCommandRecord
Source§fn clone(&self) -> ValidationCommandRecord
fn clone(&self) -> ValidationCommandRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ValidationCommandRecord
impl Debug for ValidationCommandRecord
Source§impl<'de> Deserialize<'de> for ValidationCommandRecord
impl<'de> Deserialize<'de> for ValidationCommandRecord
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ValidationCommandRecord
impl RefUnwindSafe for ValidationCommandRecord
impl Send for ValidationCommandRecord
impl Sync for ValidationCommandRecord
impl Unpin for ValidationCommandRecord
impl UnsafeUnpin for ValidationCommandRecord
impl UnwindSafe for ValidationCommandRecord
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