pub struct ExecutionOutputPageResponse {
pub execution_id: String,
pub generation: u64,
pub events: Vec<ExecutionOutputEvent>,
pub next_cursor: String,
pub has_more: bool,
pub truncated: bool,
}Fields§
§execution_id: String§generation: u64§events: Vec<ExecutionOutputEvent>§next_cursor: String§has_more: bool§truncated: boolTrait Implementations§
Source§impl Clone for ExecutionOutputPageResponse
impl Clone for ExecutionOutputPageResponse
Source§fn clone(&self) -> ExecutionOutputPageResponse
fn clone(&self) -> ExecutionOutputPageResponse
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 ExecutionOutputPageResponse
impl Debug for ExecutionOutputPageResponse
Source§impl<'de> Deserialize<'de> for ExecutionOutputPageResponse
impl<'de> Deserialize<'de> for ExecutionOutputPageResponse
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
impl Eq for ExecutionOutputPageResponse
Source§impl Hash for ExecutionOutputPageResponse
impl Hash for ExecutionOutputPageResponse
impl StructuralPartialEq for ExecutionOutputPageResponse
Auto Trait Implementations§
impl Freeze for ExecutionOutputPageResponse
impl RefUnwindSafe for ExecutionOutputPageResponse
impl Send for ExecutionOutputPageResponse
impl Sync for ExecutionOutputPageResponse
impl Unpin for ExecutionOutputPageResponse
impl UnsafeUnpin for ExecutionOutputPageResponse
impl UnwindSafe for ExecutionOutputPageResponse
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