pub struct IngestEventsBatchResponse {
pub total: usize,
pub ingested: usize,
pub events: Vec<IngestEventResponse>,
}Expand description
DTO for batch ingestion response
Fields§
§total: usizeTotal number of events submitted
ingested: usizeNumber of events successfully ingested
events: Vec<IngestEventResponse>Individual results for each event
Trait Implementations§
Source§impl Debug for IngestEventsBatchResponse
impl Debug for IngestEventsBatchResponse
Auto Trait Implementations§
impl Freeze for IngestEventsBatchResponse
impl RefUnwindSafe for IngestEventsBatchResponse
impl Send for IngestEventsBatchResponse
impl Sync for IngestEventsBatchResponse
impl Unpin for IngestEventsBatchResponse
impl UnsafeUnpin for IngestEventsBatchResponse
impl UnwindSafe for IngestEventsBatchResponse
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