pub struct InMemoryMetricsQuery { /* private fields */ }Expand description
A custom query implementation for in-memory repository that returns actual data.
Implementations§
Source§impl InMemoryMetricsQuery
impl InMemoryMetricsQuery
pub fn new(repository: InMemoryRepository) -> Self
pub fn before(self, timestamp: i64) -> Self
pub fn after(self, timestamp: i64) -> Self
pub fn between(self, start: i64, end: i64) -> Self
pub fn with_tag(self, key: impl Into<String>, value: impl Into<String>) -> Self
pub fn for_analyzers<I, S>(self, analyzers: I) -> Self
pub fn limit(self, limit: usize) -> Self
pub fn offset(self, offset: usize) -> Self
pub fn sort(self, order: SortOrder) -> Self
pub async fn execute(self) -> Result<Vec<(ResultKey, AnalyzerContext)>>
pub async fn count(self) -> Result<usize>
pub async fn exists(self) -> Result<bool>
Auto Trait Implementations§
impl !RefUnwindSafe for InMemoryMetricsQuery
impl !UnwindSafe for InMemoryMetricsQuery
impl Freeze for InMemoryMetricsQuery
impl Send for InMemoryMetricsQuery
impl Sync for InMemoryMetricsQuery
impl Unpin for InMemoryMetricsQuery
impl UnsafeUnpin for InMemoryMetricsQuery
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
impl<T> ErasedDestructor for Twhere
T: 'static,
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