[−][src]Struct prometheus_parser::Function
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
impl RefUnwindSafe for Function
impl Send for Function
impl Sync for Function
impl Unpin for Function
impl UnwindSafe for Function
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,