pub struct HarnessEvent {
pub sequence: usize,
pub exec_ordinal: usize,
pub stream: HarnessEventStream,
pub kind: HarnessEventKind,
pub raw: String,
pub parsed: Option<Value>,
pub step_path: Option<Vec<String>>,
pub boundary_index: Option<i64>,
pub timestamp: Option<String>,
}Fields§
§sequence: usize§exec_ordinal: usize§stream: HarnessEventStream§kind: HarnessEventKind§raw: String§parsed: Option<Value>§step_path: Option<Vec<String>>§boundary_index: Option<i64>§timestamp: Option<String>Trait Implementations§
Source§impl Clone for HarnessEvent
impl Clone for HarnessEvent
Source§impl Debug for HarnessEvent
impl Debug for HarnessEvent
Source§impl<'de> Deserialize<'de> for HarnessEvent
impl<'de> Deserialize<'de> for HarnessEvent
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 HarnessEvent
impl PartialEq for HarnessEvent
Source§impl Serialize for HarnessEvent
impl Serialize for HarnessEvent
impl StructuralPartialEq for HarnessEvent
Auto Trait Implementations§
impl Freeze for HarnessEvent
impl RefUnwindSafe for HarnessEvent
impl Send for HarnessEvent
impl Sync for HarnessEvent
impl Unpin for HarnessEvent
impl UnsafeUnpin for HarnessEvent
impl UnwindSafe for HarnessEvent
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more