[][src]Struct svc_agent::mqtt::IncomingEventProperties

pub struct IncomingEventProperties { /* fields omitted */ }

Properties of an incoming event message.

Methods

impl IncomingEventProperties[src]

pub fn to_connection(&self) -> Connection[src]

pub fn label(&self) -> Option<&str>[src]

pub fn long_term_timing(&self) -> &LongTermTimingProperties[src]

pub fn short_term_timing(&self) -> &IncomingShortTermTimingProperties[src]

pub fn tracking(&self) -> &TrackingProperties[src]

pub fn to_event(
    &self,
    label: &'static str,
    short_term_timing: OutgoingShortTermTimingProperties
) -> OutgoingEventProperties
[src]

Builds OutgoingEventProperties based on the IncomingEventProperties.

Use it to dispatch an event as a reaction on another event.

Arguments

  • label – outgoing event label.
  • short_term_timing – outgoing event's short term timing properties.

Example

let short_term_timing = OutgoingShortTermTimingProperties::until_now(start_timestamp);
let out_props = in_props.to_event("agent.enter", short_term_timing);

Trait Implementations

impl Addressable for IncomingEventProperties[src]

impl Authenticable for IncomingEventProperties[src]

impl Clone for IncomingEventProperties[src]

impl Debug for IncomingEventProperties[src]

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

impl Serialize for IncomingEventProperties[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,