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

pub struct Relationship {
    pub role: Role,
    pub protocol: Option<Protocol>,
}

A combination of protocol and peer role which can match a connection between devices.

Fields

role: Role

The role of the peer device in the relationship to be discovered.

protocol: Option<Protocol>

The protocol that must be spoken between the start device and peer to include.

Methods

impl Relationship[src]

pub fn new<P: Into<Protocol>>(protocol: P, role: Role) -> Self[src]

Create a new Relationship for the specified protocol and role.

Trait Implementations

impl Eq for Relationship[src]

impl Clone for Relationship[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<Relationship> for Relationship[src]

impl Default for Relationship[src]

impl From<Protocol> for Relationship[src]

Create a relationship matching all peers over the specified protocol, regardless of which device fulfilled which role.

impl From<Role> for Relationship[src]

Create a new relationship matching any protocol with the specified peer role.

impl Debug for Relationship[src]

impl Serialize for Relationship[src]

impl<'de> Deserialize<'de> for Relationship where
    Relationship: Default
[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<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