pub trait Meta: Debug {
    fn endpoint_type(&self) -> &EndpointType;
fn subject(&self) -> Subject;
fn timestamp(&self) -> &Timestamp; }
Expand description

Provides metadata related to an event

Required methods

Returns whether the local endpoint is a Client or Server

A context from which the event is being emitted

An event can occur in the context of an Endpoint or Connection

The time the event occurred

Implementors