[][src]Struct extrahop::activitymap::query::QueryBuilder

pub struct QueryBuilder { /* fields omitted */ }

Builder for Query.

Methods

impl QueryBuilder[src]

pub fn from<VALUE: Into<QueryTime>>(&mut self, value: VALUE) -> &mut Self[src]

The absolute or relative timestamp at which the query should start.

pub fn until<VALUE: Into<QueryTime>>(&mut self, value: VALUE) -> &mut Self[src]

The absolute or relative timestmap at which the query should end. If not set, defaults to the current packet time of the appliance.

pub fn walks<VALUE: Into<Vec<Walk>>>(&mut self, value: VALUE) -> &mut Self[src]

The traversals that should be performed across the topology. Results from all walks will be merged into a single set of edges in the response.

pub fn weighting<VALUE: Into<Weighting>>(&mut self, value: VALUE) -> &mut Self[src]

The set of metrics should drive the weight of an edge.

pub fn edge_annotations<VALUE: Into<Vec<EdgeAnnotation>>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

The additional data to return for each edge.

pub fn build(&self) -> Result<Query, String>[src]

Builds a new Query.

Errors

If a required field has not been initialized.

Trait Implementations

impl Clone for QueryBuilder[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for QueryBuilder[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T