pub struct WriteEvent<'a> {
pub record: WrittenRecord<'a>,
}
Expand description
An event generated after a write event within the broker.
These events are asynchronously triggered after the producer’s write request has been acknowledged.
Fields§
§record: WrittenRecord<'a>
The record for which the event was generated for.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for WriteEvent<'a>
impl<'a> RefUnwindSafe for WriteEvent<'a>
impl<'a> Send for WriteEvent<'a>
impl<'a> Sync for WriteEvent<'a>
impl<'a> Unpin for WriteEvent<'a>
impl<'a> UnwindSafe for WriteEvent<'a>
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