pub struct RunResult {
pub status: RunStatus,
pub result: Option<Value>,
pub stdout: String,
pub stderr: String,
pub diagnostics: Vec<Diagnostic>,
pub external_calls: Vec<ExternalCallRecord>,
pub snapshot_id: Option<String>,
pub metrics: Metrics,
pub error: Option<ErrorObject>,
}Fields§
§status: RunStatus§result: Option<Value>§stdout: String§stderr: String§diagnostics: Vec<Diagnostic>§external_calls: Vec<ExternalCallRecord>§snapshot_id: Option<String>§metrics: Metrics§error: Option<ErrorObject>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RunResult
impl<'de> Deserialize<'de> for RunResult
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<RunResult, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RunResult, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for RunResult
impl Serialize for RunResult
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for RunResult
impl RefUnwindSafe for RunResult
impl Send for RunResult
impl Sync for RunResult
impl Unpin for RunResult
impl UnsafeUnpin for RunResult
impl UnwindSafe for RunResult
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