pub struct ExecutionCompletedResponse {
pub execution: Option<ExecutionDescriptor>,
pub outcome: ExecutionOutcome,
pub exit_code: Option<i32>,
pub error: Option<ExecutionErrorData>,
pub stdout: Option<Vec<u8>>,
pub stderr: Option<Vec<u8>>,
pub stdout_truncated: Option<bool>,
pub stderr_truncated: Option<bool>,
pub evaluation_value: Option<String>,
pub type_script_check_result: Option<String>,
}Fields§
§execution: Option<ExecutionDescriptor>§outcome: ExecutionOutcome§exit_code: Option<i32>§error: Option<ExecutionErrorData>§stdout: Option<Vec<u8>>§stderr: Option<Vec<u8>>§stdout_truncated: Option<bool>§stderr_truncated: Option<bool>§evaluation_value: Option<String>§type_script_check_result: Option<String>Trait Implementations§
Source§impl Clone for ExecutionCompletedResponse
impl Clone for ExecutionCompletedResponse
Source§fn clone(&self) -> ExecutionCompletedResponse
fn clone(&self) -> ExecutionCompletedResponse
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 ExecutionCompletedResponse
impl Debug for ExecutionCompletedResponse
Source§impl<'de> Deserialize<'de> for ExecutionCompletedResponse
impl<'de> Deserialize<'de> for ExecutionCompletedResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ExecutionCompletedResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ExecutionCompletedResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ExecutionCompletedResponse
Source§impl Hash for ExecutionCompletedResponse
impl Hash for ExecutionCompletedResponse
Source§impl Serialize for ExecutionCompletedResponse
impl Serialize for ExecutionCompletedResponse
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
impl StructuralPartialEq for ExecutionCompletedResponse
Auto Trait Implementations§
impl Freeze for ExecutionCompletedResponse
impl RefUnwindSafe for ExecutionCompletedResponse
impl Send for ExecutionCompletedResponse
impl Sync for ExecutionCompletedResponse
impl Unpin for ExecutionCompletedResponse
impl UnsafeUnpin for ExecutionCompletedResponse
impl UnwindSafe for ExecutionCompletedResponse
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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
Compares
self to key and returns true if they are equal.