pub struct RunReport {Show 15 fields
pub schema_version: String,
pub run: RunMeta,
pub ci: Option<CiMetadata>,
pub summary: Summary,
pub events: Vec<TimelineEvent>,
pub processes: Vec<ProcessInfo>,
pub files: Vec<FileChange>,
pub network: Vec<NetworkEvent>,
pub docker: Option<DockerSummary>,
pub risks: Vec<RiskNote>,
pub stdout_path: Option<String>,
pub stderr_path: Option<String>,
pub stdout: Option<String>,
pub stderr: Option<String>,
pub limitations: Vec<String>,
}Fields§
§schema_version: String§run: RunMeta§ci: Option<CiMetadata>§summary: Summary§events: Vec<TimelineEvent>§processes: Vec<ProcessInfo>§files: Vec<FileChange>§network: Vec<NetworkEvent>§docker: Option<DockerSummary>§risks: Vec<RiskNote>§stdout_path: Option<String>§stderr_path: Option<String>§stdout: Option<String>§stderr: Option<String>§limitations: Vec<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for RunReport
impl<'de> Deserialize<'de> for RunReport
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 RunReport
impl RefUnwindSafe for RunReport
impl Send for RunReport
impl Sync for RunReport
impl Unpin for RunReport
impl UnsafeUnpin for RunReport
impl UnwindSafe for RunReport
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