[][src]Struct extrahop::activitymap::Edge

pub struct Edge {
    pub from: Oid,
    pub to: Oid,
    pub weight: usize,
    pub annotations: EdgeAnnotations,
}

A connection between two devices in an activity map API response.

An edge goes from client to server regardless of the direction it was traversed during the walk.

Fields

from: Oid

The "client" device in the edge. This may be the device on which the step ended if a server-to-client relationship was specified.

to: Oid

The "server" device in the edge. This may be the device on which the step started if a server-to-client relationship was specified.

weight: usize

The "importance" of the edge; larger numbers are more important.

annotations: EdgeAnnotations

Additional data about the edge which was asked for in the request.

Methods

impl Edge[src]

pub fn contains(&self, oid: &Oid) -> bool[src]

Returns true if the edge contains the specified object ID.

pub fn to_tuple(&self) -> (Oid, Oid)[src]

Trait Implementations

impl Eq for Edge[src]

impl Clone for Edge[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<Edge> for Edge[src]

impl Debug for Edge[src]

impl Serialize for Edge[src]

impl<'de> Deserialize<'de> for Edge[src]

Auto Trait Implementations

impl Send for Edge

impl Sync for Edge

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<Q, K> Equivalent for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T