pub struct ValidationEntry {
pub command: String,
pub exit_code: i32,
pub duration_secs: u64,
pub stdout_tail: String,
}Expand description
Result of one required_checks entry run after agent exit (v0.13.17).
Fields§
§command: StringThe command that was run.
exit_code: i32Exit code (0 = success).
duration_secs: u64How long the command took.
stdout_tail: StringLast 20 lines of combined stdout+stderr output.
Trait Implementations§
Source§impl Clone for ValidationEntry
impl Clone for ValidationEntry
Source§fn clone(&self) -> ValidationEntry
fn clone(&self) -> ValidationEntry
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 ValidationEntry
impl Debug for ValidationEntry
Source§impl<'de> Deserialize<'de> for ValidationEntry
impl<'de> Deserialize<'de> for ValidationEntry
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
Source§impl PartialEq for ValidationEntry
impl PartialEq for ValidationEntry
Source§impl Serialize for ValidationEntry
impl Serialize for ValidationEntry
impl Eq for ValidationEntry
impl StructuralPartialEq for ValidationEntry
Auto Trait Implementations§
impl Freeze for ValidationEntry
impl RefUnwindSafe for ValidationEntry
impl Send for ValidationEntry
impl Sync for ValidationEntry
impl Unpin for ValidationEntry
impl UnsafeUnpin for ValidationEntry
impl UnwindSafe for ValidationEntry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.