pub struct ExecutionEvents {
pub execution_id: String,
pub status: String,
pub complete: bool,
pub events: Vec<EngineEvent>,
pub next_after_id: Option<i64>,
pub has_more: bool,
}Fields§
§execution_id: String§status: String§complete: boolfalse while the execution is still running (snapshot of events so far).
true once the execution has reached a terminal state.
events: Vec<EngineEvent>§next_after_id: Option<i64>Cursor for fetching the next page of events.
has_more: boolWhether more events are available beyond this page.
Trait Implementations§
Source§impl Clone for ExecutionEvents
impl Clone for ExecutionEvents
Source§fn clone(&self) -> ExecutionEvents
fn clone(&self) -> ExecutionEvents
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 ExecutionEvents
impl Debug for ExecutionEvents
Source§impl<'de> Deserialize<'de> for ExecutionEvents
impl<'de> Deserialize<'de> for ExecutionEvents
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 ExecutionEvents
impl RefUnwindSafe for ExecutionEvents
impl Send for ExecutionEvents
impl Sync for ExecutionEvents
impl Unpin for ExecutionEvents
impl UnsafeUnpin for ExecutionEvents
impl UnwindSafe for ExecutionEvents
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