pub struct OpRunRow {
pub op: String,
pub status: String,
pub error_kind: Option<String>,
pub duration_ms: i64,
pub source: Option<String>,
pub agent: Option<String>,
pub context: Option<String>,
}Expand description
Raw row used for windowed aggregation in inspect().
Fields§
§op: String§status: String§error_kind: Option<String>§duration_ms: i64§source: Option<String>§agent: Option<String>§context: Option<String>Auto Trait Implementations§
impl Freeze for OpRunRow
impl RefUnwindSafe for OpRunRow
impl Send for OpRunRow
impl Sync for OpRunRow
impl Unpin for OpRunRow
impl UnsafeUnpin for OpRunRow
impl UnwindSafe for OpRunRow
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