pub type RequestReceiver = Receiver<(Vec<u8>, NetworkMsgResponseChannel<Vec<u8>>)>;
Expand description

Type alias for the channel that we receive requests from the network on.

Aliased Type§

struct RequestReceiver {
    inner: Option<Arc<BoundedInner<(Vec<u8>, NetworkMsgResponseChannel<Vec<u8>>)>>>,
}

Fields§

§inner: Option<Arc<BoundedInner<(Vec<u8>, NetworkMsgResponseChannel<Vec<u8>>)>>>