pub struct EventRow {
pub timestamp: i64,
pub event_type: String,
pub role: Option<String>,
pub task_id: Option<String>,
}Expand description
Recent events row for batty telemetry events.
Fields§
§timestamp: i64§event_type: String§role: Option<String>§task_id: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for EventRow
impl RefUnwindSafe for EventRow
impl Send for EventRow
impl Sync for EventRow
impl Unpin for EventRow
impl UnsafeUnpin for EventRow
impl UnwindSafe for EventRow
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