[][src]Struct prometheus_parser::Function

pub struct Function {
    pub name: String,
    pub args: Vec<BExpression>,
    pub aggregation: Option<Aggregation>,
    pub subquery: Option<Subquery>,
    pub span: Option<Span>,
}

A function call.

Note that function names, arguments, argument types, and return types are not validated.

Fields

name: Stringargs: Vec<BExpression>aggregation: Option<Aggregation>subquery: Option<Subquery>span: Option<Span>

Methods

impl Function[src]

pub fn new<S: Into<String>>(name: S) -> Function[src]

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

Replaces this Function's name with the given string

Note that the new name is not validated.

pub fn arg(self, arg: Expression) -> Self[src]

Adds the given expression as new argument to this function

pub fn aggregation(self, aggregation: Aggregation) -> Self[src]

Sets this Function's aggregation clause

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

Clears this Function's aggregation clause, if any

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]

Wraps this function in an Expression

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

Trait Implementations

impl Clone for Function[src]

impl Debug for Function[src]

impl Display for Function[src]

impl PartialEq<Function> for Function[src]

impl StructuralPartialEq for Function[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.