pub struct IntegrityReport {
pub stream: StreamKey,
pub from_ms: i64,
pub to_ms: i64,
pub record_count: u64,
pub duplicate_count: u64,
pub out_of_order_count: u64,
pub parse_errors: u64,
pub time_gaps: Vec<TimeGap>,
pub sequence_gaps: Vec<SequenceGap>,
pub first_ts: Option<i64>,
pub last_ts: Option<i64>,
pub avg_interval_ms: Option<f64>,
}Expand description
Full analysis result for one stream range.
Fields§
§stream: StreamKey§from_ms: i64§to_ms: i64§record_count: u64§duplicate_count: u64§out_of_order_count: u64§parse_errors: u64§time_gaps: Vec<TimeGap>Periods longer than time_gap_threshold_ms with no events.
sequence_gaps: Vec<SequenceGap>Sequence number jumps detected in orderbook payloads.
first_ts: Option<i64>§last_ts: Option<i64>§avg_interval_ms: Option<f64>Average interval between successive records (ms).
Trait Implementations§
Source§impl Clone for IntegrityReport
impl Clone for IntegrityReport
Source§fn clone(&self) -> IntegrityReport
fn clone(&self) -> IntegrityReport
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 moreAuto Trait Implementations§
impl Freeze for IntegrityReport
impl RefUnwindSafe for IntegrityReport
impl Send for IntegrityReport
impl Sync for IntegrityReport
impl Unpin for IntegrityReport
impl UnsafeUnpin for IntegrityReport
impl UnwindSafe for IntegrityReport
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