Struct RemoveQueryBuilder

Source
pub struct RemoveQueryBuilder { /* private fields */ }
Expand description

Builder for a remove query request.

Implementations§

Source§

impl RemoveQueryBuilder

Source

pub fn start(self, time: SystemTime) -> Self

Set the start time of the query.

Source

pub fn start_us(self, time_us: u64) -> Self

Set the start time of the query as a unix timestamp in microseconds.

Source

pub fn stop(self, time: SystemTime) -> Self

Set the end time of the query.

Source

pub fn stop_us(self, time_us: u64) -> Self

Set the end time of the query as a unix timestamp in microseconds.

Source

pub fn when(self, condition: Value) -> Self

Set the condition for the query. This will remove all records that match the condition. This is a destructive operation.

Source

pub fn strict(self, strict: bool) -> Self

Set the query to be strict. If the query is strict, the query will return an error if any of the conditions are invalid. default: false

Source

pub fn include(self, labels: Labels) -> Self

👎Deprecated since 1.13.0: Use the when method to set the labels to include in the query.

Set the labels to include in the query.

Source

pub fn add_include<Str>(self, key: Str, value: Str) -> Self
where Str: Into<String>,

👎Deprecated since 1.13.0: Use the when method to set the labels to include in the query.

Add a label to include in the query.

Source

pub fn exclude(self, labels: Labels) -> Self

👎Deprecated since 1.13.0: Use the when method to set the labels to exclude from the query.

Set the labels to exclude from the query.

Source

pub fn add_exclude<Str>(self, key: Str, value: Str) -> Self
where Str: Into<String>,

👎Deprecated since 1.13.0: Use the when method to add a label to exclude from the query.

Add a label to exclude from the query.

Source

pub fn each_s(self, each_s: f64) -> Self

Set S, to return a record every S seconds. default: return all records

Source

pub fn each_n(self, each_n: u64) -> Self

Set N, to return every N records. default: return all records

Source

pub async fn send(self) -> Result<u64, ReductError>

Send the remove query request. This will remove all records that match the query. This is a destructive operation.

§Returns
  • Result<u64, ReductError> - The number of records removed.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,