[][src]Struct prometheus_parser::Selector

pub struct Selector {
    pub metric: Option<String>,
    pub labels: Vec<Label>,
    pub range: Option<PromDuration>,
    pub offset: Option<PromDuration>,
    pub subquery: Option<Subquery>,
    pub span: Option<Span>,
}

A Selector that retrieves time series data from Prometheus

Fields

metric: Option<String>labels: Vec<Label>range: Option<PromDuration>offset: Option<PromDuration>subquery: Option<Subquery>span: Option<Span>

Methods

impl Selector[src]

pub fn new() -> Self[src]

pub fn metric<S: Into<String>>(self, metric: S) -> Self[src]

Sets or replaces this Selector's metric

pub fn clear_metric(self) -> Self[src]

Clears this Selector's metric

pub fn label(self, label: Label) -> Self[src]

Adds a label to this Selector

pub fn labels(self, labels: Vec<Label>) -> Self[src]

Replaces this Selector's labels with the given set

pub fn clear_labels(self) -> Self[src]

Clears this Selector's set of labels

pub fn range(self, range: PromDuration) -> Self[src]

Sets or replaces this Selector's range

pub fn clear_range(self) -> Self[src]

Clears this Selector's range

pub fn offset(self, offset: PromDuration) -> Self[src]

Sets or replaces this Selector's offset

pub fn clear_offset(self) -> Self[src]

pub fn subquery(self, subquery: Subquery) -> Self[src]

pub fn clear_subquery(self) -> Self[src]

pub fn span<S: Into<Span>>(self, span: S) -> Self[src]

pub fn wrap(self) -> Expression[src]

pub fn return_value(&self) -> ReturnValue[src]

Trait Implementations

impl Clone for Selector[src]

impl Debug for Selector[src]

impl Default for Selector[src]

impl Display for Selector[src]

impl Eq for Selector[src]

impl PartialEq<Selector> for Selector[src]

impl StructuralEq for Selector[src]

impl StructuralPartialEq for Selector[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.