Struct libp2p_swarm::handler::FullyNegotiatedOutbound
source · pub struct FullyNegotiatedOutbound<OP: OutboundUpgradeSend, OOI> {
pub protocol: OP::Output,
pub info: OOI,
}
Expand description
ConnectionEvent
variant that informs the handler about successful upgrade on a new outbound stream.
The protocol
field is the information that was previously passed to
ConnectionHandlerEvent::OutboundSubstreamRequest
.
Fields§
§protocol: OP::Output
§info: OOI
Auto Trait Implementations§
impl<OP, OOI> RefUnwindSafe for FullyNegotiatedOutbound<OP, OOI>where OOI: RefUnwindSafe, <OP as OutboundUpgradeSend>::Output: RefUnwindSafe,
impl<OP, OOI> Send for FullyNegotiatedOutbound<OP, OOI>where OOI: Send,
impl<OP, OOI> Sync for FullyNegotiatedOutbound<OP, OOI>where OOI: Sync, <OP as OutboundUpgradeSend>::Output: Sync,
impl<OP, OOI> Unpin for FullyNegotiatedOutbound<OP, OOI>where OOI: Unpin, <OP as OutboundUpgradeSend>::Output: Unpin,
impl<OP, OOI> UnwindSafe for FullyNegotiatedOutbound<OP, OOI>where OOI: UnwindSafe, <OP as OutboundUpgradeSend>::Output: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more