pub struct TaskGateRecord {
pub id: String,
pub gate: String,
pub command: String,
pub cwd: PathBuf,
pub exit_code: Option<i32>,
pub status: String,
pub classification: String,
pub duration_ms: u64,
pub summary: String,
pub log_path: Option<PathBuf>,
pub recorded_at: DateTime<Utc>,
}Expand description
Structured verification evidence attached to a task.
Fields§
§id: String§gate: String§command: String§cwd: PathBuf§exit_code: Option<i32>§status: String§classification: String§duration_ms: u64§summary: String§log_path: Option<PathBuf>§recorded_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for TaskGateRecord
impl Clone for TaskGateRecord
Source§fn clone(&self) -> TaskGateRecord
fn clone(&self) -> TaskGateRecord
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 TaskGateRecord
impl Debug for TaskGateRecord
Source§impl<'de> Deserialize<'de> for TaskGateRecord
impl<'de> Deserialize<'de> for TaskGateRecord
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 TaskGateRecord
impl RefUnwindSafe for TaskGateRecord
impl Send for TaskGateRecord
impl Sync for TaskGateRecord
impl Unpin for TaskGateRecord
impl UnsafeUnpin for TaskGateRecord
impl UnwindSafe for TaskGateRecord
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