pub struct WindowMeta {
pub pipeline: String,
pub start: OffsetDateTime,
pub end: OffsetDateTime,
}Expand description
Metadata describing the time window a batch of records belongs to.
Fields§
§pipeline: StringPipeline (collector) name; used for partitioning storage paths.
start: OffsetDateTimeStart of the window the records were collected in.
end: OffsetDateTimeEnd of the window (the time the batch was handed over).
Trait Implementations§
Source§impl Clone for WindowMeta
impl Clone for WindowMeta
Source§fn clone(&self) -> WindowMeta
fn clone(&self) -> WindowMeta
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WindowMeta
impl Debug for WindowMeta
Source§impl PartialEq for WindowMeta
impl PartialEq for WindowMeta
Source§fn eq(&self, other: &WindowMeta) -> bool
fn eq(&self, other: &WindowMeta) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WindowMeta
Auto Trait Implementations§
impl Freeze for WindowMeta
impl RefUnwindSafe for WindowMeta
impl Send for WindowMeta
impl Sync for WindowMeta
impl Unpin for WindowMeta
impl UnsafeUnpin for WindowMeta
impl UnwindSafe for WindowMeta
Blanket Implementations§
impl<T> Allocation for T
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