pub struct ExecutionSucceededEventDetails {
pub output: Option<String>,
}
Expand description
Contains details about the successful termination of the execution.
Fields§
§output: Option<String>
The JSON data output by the execution.
Trait Implementations§
Source§impl Clone for ExecutionSucceededEventDetails
impl Clone for ExecutionSucceededEventDetails
Source§fn clone(&self) -> ExecutionSucceededEventDetails
fn clone(&self) -> ExecutionSucceededEventDetails
Returns a copy 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 Default for ExecutionSucceededEventDetails
impl Default for ExecutionSucceededEventDetails
Source§fn default() -> ExecutionSucceededEventDetails
fn default() -> ExecutionSucceededEventDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExecutionSucceededEventDetails
impl<'de> Deserialize<'de> for ExecutionSucceededEventDetails
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 ExecutionSucceededEventDetails
impl PartialEq for ExecutionSucceededEventDetails
Source§fn eq(&self, other: &ExecutionSucceededEventDetails) -> bool
fn eq(&self, other: &ExecutionSucceededEventDetails) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ExecutionSucceededEventDetails
Auto Trait Implementations§
impl Freeze for ExecutionSucceededEventDetails
impl RefUnwindSafe for ExecutionSucceededEventDetails
impl Send for ExecutionSucceededEventDetails
impl Sync for ExecutionSucceededEventDetails
impl Unpin for ExecutionSucceededEventDetails
impl UnwindSafe for ExecutionSucceededEventDetails
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