pub struct AnalyticsEngine;Expand description
Analytics engine for time-series and statistical analysis
Implementations§
Source§impl AnalyticsEngine
impl AnalyticsEngine
Sourcepub fn event_frequency(
store: &EventStore,
request: EventFrequencyRequest,
) -> Result<EventFrequencyResponse>
pub fn event_frequency( store: &EventStore, request: EventFrequencyRequest, ) -> Result<EventFrequencyResponse>
Analyze event frequency over time windows
Sourcepub fn stats_summary(
store: &EventStore,
request: StatsSummaryRequest,
) -> Result<StatsSummaryResponse>
pub fn stats_summary( store: &EventStore, request: StatsSummaryRequest, ) -> Result<StatsSummaryResponse>
Generate comprehensive statistical summary
Sourcepub fn analyze_correlation(
store: &EventStore,
request: CorrelationRequest,
) -> Result<CorrelationResponse>
pub fn analyze_correlation( store: &EventStore, request: CorrelationRequest, ) -> Result<CorrelationResponse>
Analyze correlation between two event types
Auto Trait Implementations§
impl Freeze for AnalyticsEngine
impl RefUnwindSafe for AnalyticsEngine
impl Send for AnalyticsEngine
impl Sync for AnalyticsEngine
impl Unpin for AnalyticsEngine
impl UnwindSafe for AnalyticsEngine
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more