pub struct Dropped {
pub msg_id: u64,
pub origin_stream_id: u64,
pub event_type_name: &'static str,
}Expand description
Event emitted when a message is dropped due to a slow consumer.
Subscribe to this event to monitor stream health and identifying slow parts of your pipeline.
Fields§
§msg_id: u64The ID of the message that was dropped.
origin_stream_id: u64The ID of the stream where the drop occurred (usually the origin of the message).
event_type_name: &'static strThe type name of the dropped event (for debugging).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Dropped
impl RefUnwindSafe for Dropped
impl Send for Dropped
impl Sync for Dropped
impl Unpin for Dropped
impl UnwindSafe for Dropped
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