pub trait Identifiable {
    fn id(&self) -> SubscriptionId;
}
Expand description

Identifiable structures are capable of determining their associated SubscriptionId. Used by ExchangeTransformer implementations to determine the original Barter Subscription associated with an incoming exchange message.

Required Methods

Implementors