pub struct QueryStream {
pub group_name: String,
pub stream_name: String,
pub events: Vec<(usize, LogEvent)>,
}Expand description
One stream’s events for query execution.
Fields§
§group_name: String§stream_name: String§events: Vec<(usize, LogEvent)>Each event paired with its index in the stream’s full event list so
@ptr round-trips through GetLogRecord.
Auto Trait Implementations§
impl Freeze for QueryStream
impl RefUnwindSafe for QueryStream
impl Send for QueryStream
impl Sync for QueryStream
impl Unpin for QueryStream
impl UnsafeUnpin for QueryStream
impl UnwindSafe for QueryStream
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