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

pub struct Query {
    pub from: QueryTime,
    pub until: QueryTime,
    pub walks: Vec<Walk>,
    pub weighting: Weighting,
    pub edge_annotations: Vec<EdgeAnnotation>,
}

Envelope for an ad-hoc activity map query.

Construction

If constructed with struct literal syntax, Query::default() must be used to ensure source compatibility with future library updates.

Fields

from: QueryTime

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

until: QueryTime

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

walks: Vec<Walk>

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.

weighting: Weighting

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

edge_annotations: Vec<EdgeAnnotation>

The additional data to return for each edge.

Trait Implementations

impl Builder for Query[src]

type Builder = QueryBuilder

fn builder() -> Self::Builder[src]

Creates the builder

impl Clone for Query[src]

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

Performs copy-assignment from source. Read more

impl Default for Query[src]

impl From<Walk> for Query[src]

impl Index<Appearance> for Query[src]

Find a step configuration for an rsp::Appearance from the edge list in a query response.

type Output = Step

The returned type after indexing.

impl Debug for Query[src]

impl Serialize for Query[src]

impl<'de> Deserialize<'de> for Query where
    Query: Default
[src]

Auto Trait Implementations

impl Send for Query

impl Sync for Query

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T