pub struct TelemetryQuery {
pub from_ts_ms: Option<u64>,
pub to_ts_ms: Option<u64>,
pub key_prefix: Option<String>,
pub limit: Option<usize>,
}Fields§
§from_ts_ms: Option<u64>§to_ts_ms: Option<u64>§key_prefix: Option<String>§limit: Option<usize>Implementations§
Source§impl TelemetryQuery
impl TelemetryQuery
pub fn matches(&self, point: &TelemetryPoint) -> bool
Trait Implementations§
Source§impl Clone for TelemetryQuery
impl Clone for TelemetryQuery
Source§fn clone(&self) -> TelemetryQuery
fn clone(&self) -> TelemetryQuery
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 TelemetryQuery
impl Debug for TelemetryQuery
impl Eq for TelemetryQuery
Source§impl PartialEq for TelemetryQuery
impl PartialEq for TelemetryQuery
Source§fn eq(&self, other: &TelemetryQuery) -> bool
fn eq(&self, other: &TelemetryQuery) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TelemetryQuery
Auto Trait Implementations§
impl Freeze for TelemetryQuery
impl RefUnwindSafe for TelemetryQuery
impl Send for TelemetryQuery
impl Sync for TelemetryQuery
impl Unpin for TelemetryQuery
impl UnsafeUnpin for TelemetryQuery
impl UnwindSafe for TelemetryQuery
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