pub type GossipSubscription = InboundStream<Gossip, Gossip>;
Expand description

The inbound subscription stream of P2P gossip.

Aliased Type§

struct GossipSubscription {
    inner: Streaming<Gossip>,
    _phantom: PhantomData<Gossip>,
}

Fields§

§inner: Streaming<Gossip>§_phantom: PhantomData<Gossip>